Define inline function



Define inline function..

Answer / hrpynux@gmail.com

An inline function is one for which the compiler copies the code from the function definition directly into the code of the calling function rather than creating a separate set of instructions in memory. This eliminates call-linkage overhead and can expose significant optimization opportunities.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

what you know about c++?

0 Answers   IBS,


What is the use of c++ programming language in real life?

0 Answers  


What is the difference between a "copy constructor" and an "assignment operator" in C++?

0 Answers   Genpact,


What's the hardest coding language?

0 Answers  


What is virtual base class?

0 Answers  


How can you say that a template is better than a base class?

0 Answers  


Describe the advantage of an external iterator.

0 Answers  


Difference between Top down and bottom up approaches for a given project ?

14 Answers   BSNL, CSC, HCL, HP, IIT, Infosys, Siemens,


Implement strncpy

3 Answers  


What will happen if I allocate memory using "new" and free it using "free" or allocate sing "calloc" and free it using "delete"?

3 Answers  


What do you mean by ‘void’ return type?

0 Answers  


Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;

1 Answers  


Categories