Exercise 18 - due at 11:59:00 PM on Sunday, 10/17/2021 Both problems can be solved in the same program 1. Write a C++ function that accepts an array of integers and its sze as parameters and returns the count of odd numbers in the array. Sample Run: Assume the array is 1 3 19 24 32 0 21 -7 16 8 The count of odd numbers is : 5 2. Write a C++ function to accept an array of doubles and its size as parameters and return the number of negative numbers in the array. Sample Run: Assume the array is 5 16 -7 21 19 -567 47 0 -456 -12 9 -8 The count of negative numbers is : 5