Display Array In Reverse

easy
1. You are given a number n, representing the size of array a.
2. You are given n numbers, representing elements of array a.
3. You are required to print the elements of array from end to beginning each in a separate line.
4. For the above purpose complete the body of displayArrReverse function. Don't change the signature.

Note -> The online judge can't force you to write the function recursively but that is what the spirit of question is. Write recursive and not iterative logic. The purpose of the question is to aid learning recursion and not test you.

Input Format

A number n n1 n2 .. n number of elements

Output Format

n1 n2 .. n elements

Constraints

1 <= n <= 30
0 <= n1, n2, .. n elements <= 10

Notice

Try First, Check Solution later

1. You should first read the question and watch the question video.
2. Think of a solution approach, then try and submit the question on editor tab.
3. We strongly advise you to watch the solution video for prescribed approach.

Example

Input
5
3
1
0
7
5
Output
5
7
0
1
3
Previous
Display Array
Next
Max Of An Array

Related Questions