Can inline functions have a recursion?
By admin on Jan 17, 2007 in C++ Interview Questions, Technical
No.
Syntax wise It is allowed. But then the function is no longer Inline. As the compiler will never know how deep the recursion is at compilation time.


