write a c. program which should consist of a user defined function “Task ()”
[function returns no value]. Pass 1D array to the function , along with the number of elements of array and element to search. Functon should imllement linear search , and if the element is not found in the array , then insert that element at the end of the array . Display the final array after insertion [ After function is called] in the main function. [Note: array should be passed using reference approach]
