5. Can inline functions have a recursion?
Answers were Sorted based on User's Feedback
Answer / jeremiah
A function that is marked "inline" can also be recursive.
- The "inline" keyword on a function definition is only a
suggestion to the compiler that this function is a good
candidate for inlining. The compiler will still have the
final say if the function can be inlined or not.
- In certain cases a function cannot be inlined even if it
has the "inline" modifier:
* You use the function as a callback which requires a
pointer to the function.
* You make a recursive call to the function that has been
marked inline. In this case, the compiler can't determine
the base case for the recursive function and theirfor can't
unroll the inline function in the recursive call. Then an
external version of the function is required.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / anjali
No inline function dnt hv recursion because inline function
cantains one or two line code only
| Is This Answer Correct ? | 6 Yes | 5 No |
Answer / nilay
It can have but the size of .obj (compiled) file(on
windows, .o on unix platform ) increases . so it is not
advisable to dos so.
| Is This Answer Correct ? | 0 Yes | 2 No |
Is c++ free?
print first nodd numbers in descending order
Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list
What is #include cmath?
How to stop conversions among objects?
Explain deep copy and a shallow copy?
What do the keywords volatile and mean mutable?
Name the implicit member functions of a class.
What is the Difference between "printf" and "sprintf"?
7 Answers iSoft, PentaWare, TCS,
What is an inclusion guard?
What is an action class?
Is it possible to provide default values while overloading a binary operator?