Exercise 26 - due at 11:59:00 PM on Sunday, 11/07/2021 Both problems can be solved in the same program. 1. Write a C++ program that creates an integer array and read in values. Let's say the array is of size 10. Then, move through the array using the pointer and print the values out. Sample Run: Enter 10 numbers: 10 35 -9 12 -32 45 3 8 19 5 The starting address is 0xffffffff87c0 (this will be different for you) The values are: 10 35 -9 12 -32 45 3 8 19 5 2. Create a pointer to an array of 10 integers. Use the dereferenced pointer and pointer arithmetic to add all numbers in even positions and subtract all the numbers in odd prositions from an overall total. Print the total. Sample Run: Enter an array of size 10 12 -5 9 10 32 -117 258 19 39 6 The total is 437 Explanation: 0 + 12 - (-5) + 9 - 10 + 32 - (-117) + 258 - 19 + 39 - 6 = 437