Does defining a function inline mean that it wont push and
pop things on/off the stack ...like parameters and the
return the address??
Answer Posted / jomb
yes... because the function call to inline function will
substitute the code for the function in the place of
function call, instead of transfering the control to the
function... so, no need to push or pop.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
How are pointers type-cast?
Explain selection sorting. Also write an example.
What is ios class in c++?
What is c++ best used for?
What is a responder chain?
Explain the use of vtable.
What is enum class in c++?
Do you know about C++ 11 standard?
What is code reusability in c++?
How the programmer of a class should decide whether to declare member function or a friend function?
How do you compile the source code with your compiler?
What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00
Explain what is polymorphism in c++?
Write a program to find the Fibonacci series recursively.
Discuss the effects occur, after an exception thrown by a member function is unspecified by an exception specification?