Write a menu driven c program to create an integer array and populate it wi

Write a menu driven c program to create an integer array and populate it with some data. Then perform the following operations with user choice: a) Insert an element at beginning, at end, at any position of the array. b) Delete an element at beginning, from end, from a given position of the array. c) Replace the element of a given position with another number. d) Search if an element exist in the list (using linear search). e) Display the array elements