Answer Posted / 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 View All Answers
Is ca high or low level language?
Explain what is oop?
What is scope in c++ with example?
Which of the following is evaluated first: a) && b) || c) !
What is #include c++?
What operators can you overload in c++?
Is recursion allowed in inline functions?
What is the disadvantage of using a macro?
What is const in c++?
What is ios in c++?
What are references in c++? What is a local reference?
Why can templates only be implemented in the header file?
Write a function to find the nth item from the end of a linked list in a single pass.
What is the use of 'this' pointer?
Explain how to initialize a const data member.