Step 3 of 6
Read into an array
You can scanf directly into an element: scanf("%d", &a[i]);
Your turn: input is n (at most 100) followed by n numbers. Print them in reverse order on one line, separated by spaces.
Input 4 / 1 2 3 4 prints 4 3 2 1.