Saved Bookmarks
| 1. |
What Are Recursive Functions? Can We Make Them Inline? |
|
Answer» The RECURSIVE functions refer to the functions which make calls to itself before GIVING out the final result. These can be declared as in-line functions and the compiler will allocate the memory space intended for the FIRST call of the FUNCTION. The recursive functions refer to the functions which make calls to itself before giving out the final result. These can be declared as in-line functions and the compiler will allocate the memory space intended for the first call of the function. |
|