Question: Consider the following recursive function: void funcRec(int u, char v) //Line 1 { //Line 2 if (u == 0) //Line 3 cout < < v;
Consider the following recursive function:
void funcRec(int u, char v) //Line 1
{ //Line 2
if (u == 0) //Line 3
cout << v; //Line 4
else if (u == 1) //Line 5
cout << static_cast
(static_cast
else //Line 7
funcRec(u - 1, v); //Line 8
} //Line 9
Answer the following questions:
a. Identify the base case.
b. Identify the general case.
c. What is the output of the following statement?
funcRec(5, "A");
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
