Question: Q. The following recursive function prints the values in an array segment a[low..high] in reverse order. void r_print ( int a[], int low, int high

Q. The following recursive function prints the values in an array segment a[low..high] in reverse order. void r_print ( int a[], int low, int high ) { if ( low > high ) return; elsel { r_print ( a, low+1, high ); cout
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
