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 is the disadvantage of using a macro?
What is the basic difference between C and C++?
what is VOID?
Explain how a pointer to function can be declared in C++?
What is #include sstream?
Is std :: string immutable?
What is c++ and its features?
Is c++ a pure oop language?
What are the rules about using an underscore in a c++ identifier?
What is the main use of c++?
Comment on c++ standard exceptions?
Can the operator == be overloaded for comparing two arrays consisting of characters by using string comparison?