Program: Write a C program that reads ten numbers from input and prints them in reverse order. We assume that the data consists of integers. The program should conform to the following format:
Enter ten numbers: 8 2 34 99 17 3 25 12 -4 44
The reverse sequence is: 44 -4 12 25 3 17 99 34 2 8
Submit your program called reverse.c using the handin command. Hint: You have to use an array to store the numbers.
Prepare a c program that reads numbers from input and show in reverse order.