- #include <stdio.h>
- #include <conio.h>
- void main()
- {
- int array[100], search, i, n, count = 0;
- printf("Enter the number of elements in array\n");
- scanf("%d", &n);
- printf("Enter %d numbers\n", n);
- for ( i = 0 ; i < n ; i++ )
- {
- scanf("%d", &array[i]);
- }
- printf("Enter the number to search\n");
- scanf("%d", &search);
- for (i = 0; i < n; i++) {
- if (array[i] == search) {
- printf("%d is present at location %d.\n", search, i+1);
- count++;
- }
- }
- if (count == 0)
- printf("%d is not present in array.\n", search);
- else
- printf("%d is present %d times in array.\n", search, count);
- getch();
- }
Tuesday 29 November 2016
Linear Search Program In C For Multiple Occurrences
Subscribe to:
Post Comments (Atom)
Upload valid file in C#
protected bool CheckFileExtandLength(HttpPostedFile HtmlDocFile) { try { Dictionary<string, byte[]>...
-
CREATE TAblE #temp ( T_Name VARCHAR(50), T_Times BIGINT ) INSERT INTO #temp(T_Name,T_Times) VALUES ('ASHISH',4) IN...
-
Step 1: Open URL: https://portal.azure.com/#home Step2 : Click Manage Azure Active Director Step3: Click Enterprise Application Step 4: Ne...
-
Injection Injection flaws, such as SQL injection, LDAP injection, and CRLF injection, occur when an attacker sends untrusted data to an ...
No comments:
Post a Comment