1. Create a C++ source code for the program output given below.
2. Submit in the LMS.
Note: Set the maximum size of the array to 100. You may input any 5 whole numbers.
Number[0]: -6
Number[1]: -4
Number[2]: 0
Number[3]: 9
Number[4]: 8
Values inside the array: -6 -4 0 9 8
Values in ascending order: -6 -4 0 8 9
Count of positive odd numbers: 1
Sum of odd numbers: 9
Largest positive number: 9
Functions to create:
1. main()
2. displayValues()
3. ascendingOrder()
4. countPosOdd()
5. sumOdd()
6.largestPositive()
Note: Determine if your functions
has parameters and what
parameters