Exercise 16 - 02/21/2017 Write a C++ function to accept an array of integers and return the difference between the sum of all odd numbers and the sum of all the even numbers in the array. Assume the array is also passed in as a parameter. Sample Run: This assumes an array size of 10 Enter the numbers: 5 12 31 -8 -19 28 23 57 42 20 The difference is 3