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 |
Why pointer is used in c++?
What is c++ redistributable?
Is map sorted c++?
What is object in c++ example?
How long does this loop run: for(int x=0; x=3; x++) a) Never b) Three times c) Forever
17 Answers Datavance, Quark, VEL, Wipro,
What is atoi?
write a program that will produce the ff. output. "what fruit will you buy? 1)apple 2)orange 3)mango ENTER CHOICE (1,2 or 3)> HOW MANY WILL YOU BUY?> THAT WILL COST XX.XX
What is an inclusion guard?
How would you use the functions sin(), pow(), sqrt()?
What is meant by iomanip in c++?
Please explain the reference variable in c++?
What is c++ 11 and c++ 14?