1.

Write a C program to perform binary search and linear search in the same program using functions Please help

Answer»

tion:LINEAR search using FUNCTION in C#includeint linear_search(int*, int, int);MAIN(){int array[100], search, c, n, position;printf("Enter the NUMBER of elements in array\n");scanf("%d",&n);printf("Enter %d numbers\n", n);



Discussion

No Comment Found