Define inline function
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 |
what you know about c++?
What is the use of c++ programming language in real life?
What is the difference between a "copy constructor" and an "assignment operator" in C++?
What's the hardest coding language?
What is virtual base class?
How can you say that a template is better than a base class?
Describe the advantage of an external iterator.
Difference between Top down and bottom up approaches for a given project ?
14 Answers BSNL, CSC, HCL, HP, IIT, Infosys, Siemens,
Implement strncpy
What will happen if I allocate memory using "new" and free it using "free" or allocate sing "calloc" and free it using "delete"?
What do you mean by ‘void’ return type?
Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;