Skip to main content

21. Linear Searching in an array

 

/* Linear Searching in an array. */


#include <stdio.h>
int main()
{
    int n, i, item, pos = -1;
    printf("Enter the elements of array: ");
    scanf("%d", &n);
    int a[n];
    for(i = 0; i < n; i++){
        printf("Enter element %d: ", i+1);
        scanf("%d", &a[i]);
    }
    printf("The array you entered is .....\n");
    for(i = 0; i < n; i++)
    printf("%d "a[i]);
    printf("\nEnter the element whose position you want: ");
    scanf("%d", &item);
    for(i = 0; i < n; i++){
        if(a[i] == item)
        pos = i + 1;
    }
    if(pos == -1)
    printf("Value is not founded.\n");
    else
    printf("%d is founded at position %d.\n", item, pos);
    return 0;
}

Comments