write a program that reads a list of integers and outputs those integers in reverse 5155655
Write a program that reads a list of integers, and outputs those integers in reverse. The input begins with an integer indicating the number of integers that follow. For coding simplicity, follow each output integer by a space, including the last one. Assume that the list will always contain less than 20 integers. Ex: If the input is: 5 2 4 6 8 10 the output is: 10 8 6 4 2 To achieve the above, first read the integers into an array. Then output the array in reverse. LAB 5.16.1: LAB: Output numbers in reverse 0/10 ACTIVITY main.c Load default template… 1 include 3 int main(void) const int NUM_ELEMENTS 20; int userVals [NUM_ELEMENTS ]; /Number of input integers /Array to hold the user's input integers 4 5 Type your code here. return 0 10 11