InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by recursion in C? |
|
Answer» Recursion is a function that calls itself. It is EASY to write in the program, but it requires a lot of MEMORY space and execution time. The ADVANTAGE of using recursion is that developers can avoid unnecessary calling of functions by SUBSTITUTING with iteration. |
|