1.

When is it possible that an inline function may not work?

Answer»

The inline function may not work under following situations:

  • The inline function definition is too big or complicated.
  • The inline function is a recursive.
  • The inline function has switch or go to statements.
  • The inline function has while, do-while or for looping controls.
  • The inline function has static variables.


Discussion

No Comment Found