/*write a c program to input N numbers and store them in an array. conduct a linear search for a given key number and report success or failure in the form of a suitable message.*/ #include #include void main() { int i,n,a[15],k,flag; printf("\n Enter the n of size of the array:"); scanf("%d",&n); printf("\n Enter the array"); for(i=0;i