- 1
Create a function that prints all elements of an array using recursion. Fill the blanks void print(int b[], int size){ if (size>0){ cout<<b[0]<<endl; _______(&b[1],size - 1); } }
3 Respuestas
+ 1
thanks cohen
+ 1
thanks cohen
0
Rercusion is the process in which a function calls itself. Such a function is called a recursive function. Thus, the blank space will be the name of the function, "print".