Write a C program to read elements of an array and search whether an element exists in the array or not.
main() must call function searchArray(array,size,key) to search an elements in an array linearly.
if the key is in an array, searchArray() returns the lowest index of the element. Otherwise, it returns -1.