Is it possible to have a recursive inline function?
Answers
Answered by
1
Answer:
the call to an inline function is replaced with the function itself, the overhead of building a parameter list and calling the function is eliminated in the calling function.
Answered by
1
Answer:
Inline functions can also be recursive. Since the call to an inline function is replaced with the function itself, the overhead of building a parameter list and calling the function is eliminated in the calling function. ... Below is an example of a program that calls an inline function.
Similar questions