Problem
Write a program in C to insert new value in the array (unsorted list). Test Data: Input the size of array: 4 Input 4 elements in the array in ascending order: element - 0: 2 element - 1: 9 element - 2: 7 element - 3: 12 Input the value to be inserted: 5 Input the Position, where the value to be inserted: 2 Expected Output: The current list of the array: 2 9 7 12 After Insert the element the new list is: 2 5 9 7 12