Can inline functions have a recursion? Give the reason?

Answers were Sorted based on User's Feedback



Can inline functions have a recursion? Give the reason?..

Answer / guest

Calling the by itself, then the function is no longer
called as Inline. Compiler never know how depth of the
recursion at compilation time. Therefore inline functions
cant have a recursion

Is This Answer Correct ?    14 Yes 2 No

Can inline functions have a recursion? Give the reason?..

Answer / sandeep mannarakkal

Inline is a request to the compiler , i.e it may get rejected for the following reasons,
1) If there is recursion (recursion have stack over stack, but inline don't have stack)
2) If static variable is available inside inline function
3) if function definition and implementation are available at different files
4) If there is a function pointer to inline function

Is This Answer Correct ?    0 Yes 0 No

Can inline functions have a recursion? Give the reason?..

Answer / siva

I have tested The answer is....

Yes, you can use but Not preferable.
Inline functions are expanded as macros at compile time.
Generally inline is used if the function has fewer lines of
code.

Is This Answer Correct ?    6 Yes 9 No

Post New Answer

More C++ General Interview Questions

Difference between a homogeneous and a heterogeneous container

0 Answers  


What issue do auto_ptr objects address?

2 Answers  


What are the storage qualifiers?

0 Answers  


Explain the difference between class and struct in c++?

0 Answers  


How many types of casting are there in C++? When is a dynamic cast,static_cast,reinterpret cast used?

2 Answers   CTS,






Why iomanip is used in c++?

0 Answers  


What are arithmetic operators?

0 Answers  


What is c++ prototype?

0 Answers  


What are files in c++?

0 Answers  


Differentiate between declaration and definition.

0 Answers  


What do you mean by pure virtual functions in C++? Give an example?

1 Answers  


How do I run c++?

0 Answers  


Categories