Take as input N, a number. Take N more inputs and store that in an array. Write a recursive function which reverses the array. Print the values of reversed array.
Enter a number N and take N more inputs
Output Format:
Display values of the reversed array (separated by space)
4
1
2
3
4
4 3 2 1