Write a function that accepts an int array and the array's size as arguments. the function should create a new array that is one element larger than the argument array. the first element of the new array should be set to 0. element 0 of the argument arrayshould be copied to element 1 of the new array, element 1 of the argument array should be copied to element 2 of the new array, and so forth. the function should return a pointer to the new array. demonstrate the function by using it in a main program that reads an integer n (that is not more than 50) from standard input and then reads n integers from a file named data into an array. the program then passes the array to your element shifter function, and prints the values of the new expanded and shifted array on standard output, one value per line. you may assume that the file data has at least n values.