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
Explain the isa and hasa class relationships.
describe private access specifiers?
Do you know what are static and dynamic type checking?
What function initalizes variables in a class: a) Destructor b) Constitutor c) Constructor
Is oops and c++ same?
What is scope in c++ with example?
What is a dll entry point?
Can a list of string be stored within a two dimensional array?
Can I learn c++ without learning c?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
When does a 'this' pointer get created?
What is a terminating character in c++?
Explain the difference between c++ and java.
Is it legal in c++ to overload operator++ so that it decrements a value in your class?
What is endl c++?