A recursive function can be replaced with …….in C language.
a) for loop
b) while loop
c) do while loop
d) All the above
A recursive function is faster than…loop.
a) for
b) while
c) do while
d) None of these
Explanation: Yes. Recursion is slow. Variable are kept and remove on STACK memory multiple times.