Computer Science, asked by Daddykokkie, 11 hours ago

Is it possible to have a recursive inline function?​

Answers

Answered by mdtauhidali07
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 prasannahatwar66
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