C++ program design, Have specific requirements, Full compliance is required
1. Create an array of size 10 2. Have a function to populate the array - Read a file. file has nothing but integers. at least there is one number in the file. - Save the first number into a variable and return it. - Save all other numbers into an array. - Return number of items without the first number 3. Have a function to display the numbers in the array Example: File content: 1 -2 4 6 The first function saves -2 4 6 into array The first function returns 1 and 3 Pass the array and number 3 into second function and the function should display -2 4 6