Question: write a recursive function called recPrintArray() that takes an integer array as parameter and also the size of the array, and then print the content



write a recursive function called recPrintArray() that takes an integer array as parameter and also the size of the array, and then print the content of the array in reverse order Function prototype for recPrintAr ray() is shown in line #7 and called in line #12. The value of SIZE is 6 6 void printline(int); 7 void recPrintArray (int list[],int); 8 9 int main() f 10 int arr[SIZE] = {11 , 6, 27, 19, 32,15); recPrintArray(arr,e); 12 13 14 15 16 cout
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
