InterviewSolution
Saved Bookmarks
| 1. |
Is Recursion Allowed In Inline Functions? |
|
Answer» Syntactically, the RECURSION (calling of the function by itself) is allowed in INLINE function but PRACTICALLY, the inline FUNCTIONS and their properties do not remain inside the program. Moreover, the compiler is not sure about the depth of the recursion at the time of compilation. Syntactically, the recursion (calling of the function by itself) is allowed in inline function but practically, the inline functions and their properties do not remain inside the program. Moreover, the compiler is not sure about the depth of the recursion at the time of compilation. |
|