Does defining a function inline mean that it wont push and
pop things on/off the stack ...like parameters and the
return the address??
Answers were Sorted based on User's Feedback
Answer / 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 |
How is computer programming useful in real life?
Is it legal in c++ to overload operator++ so that it decrements a value in your class?
How can a called function determine the number of arguments that have been passed to it?
What are move semantics?
how can u create a doubly linked list with out using pointers?
What is difference between malloc()/free() and new/delete?
Which software is best for c++ programming?
write the programme that convert a interger to biniry number
What is the meaning of string in c++?
class professor {}; class teacher : public virtual professor {}; class researcher : public virtual professor {}; class myprofessor : public teacher, public researcher {}; Referring to the sample code above, if an object of class "myprofessor" were created, how many instances of professor will it contain? a) 0 b) 1 c) 2 d) 3 e) 4
What is capacity in vector in c++?
Show the application of a dynamic array with the help of an example.