C Program To Perform a Sequential Search : Linear search in C to find whether a number is present in an array. If it’s present, then at what location it occurs. It is also known as a sequential search.
C Program To Perform a Sequential Search
#include <stdio.h>
int main()
{
int array[100], search, c, n;
printf("Enter number of elements in array\n");
scanf("%d", &n);
printf("Enter %d integer(s)\n", n);
for (c = 0; c < n; c++)
scanf("%d", &array[c]);
printf("Enter a number to search\n");
scanf("%d", &search);
for (c = 0; c < n; c++)
{
if (array[c] == search) /* If required element is found */
{
printf("%d is present at location %d.\n", search, c+1);
break;
}
}
if (c == n)
printf("%d isn't present in the array.\n", search);
return 0;
}
Output of Program
Enter number of elements in array
5
Enter 5 integer(s)
2
23
145
256
23
Enter a number to search
254
254 isn’t present in the array.