Write A C Program To Search A Given Element From A 1D Array And Display The Position At Which It Is Found By Using Linear Search Function. The Index Location Starts From 1.
Answers
head
html
tex
A 1D Array And Display The Position At Which It Is Found By Using Linear Search Function. The Index Location Starts From 1.
Answer:
Linear Search is a process of searching given elements in sequential order.
Explanation:
#include <stdio.h>
int main()
{
int array[100], search, c, number;
printf("Enter the number of elements in array\n");
scanf("%d",&number);
printf("Enter %d numbers\n", number);
for ( c = 0 ; c < number ; c++ )
scanf("%d",&array[c]);
printf("Enter the number to search\n");
scanf("%d",&search);
for ( c = 0 ; c < number ; c++ )
{
if ( array[c] == search ) /* if required element found */
{
printf("%d is present at location %d.\n", search, c+1);
break;
}
}
if ( c == number )
printf("%d is not present in array.\n", search);
return 0;
}