Program: Write a C program (having only the function main) that declares an (integer) array of size 10, prompts the user to enter 10 integers and stores them in the array. The program should then
Part 1: Print the numbers in reverse order
Part 2: Find and print the largest number in the array
Part 3: Compute the average of all numbers and print it
Part 4: Print the number of positive numbers in the array
#define ARRAY_SIZE 10 in the starting and use it whenever you need to use the array size in your program; points would be deducted otherwise.
You have to print the numbers in reverse order and find and print the largest number in the array.