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
What is the use of volatile variable?
How do you write a function that can reverse a linked-list?
What are stacks?
What is a static member?
What do you mean by inheritance in c++? Explain its types.
Write a single instruction that will store an EVEN random integer between 54 and 212 inclusive in the variable myran. (NOTE only generate EVEN random numbers)
What is c++ virtual inheritance?
what is Member Functions in Classes?
What are enumerations?
What is the sequence of destruction of local objects?
What is ios class in c++?
Why should we use null or zero in a program?
What is the v-ptr?
What do the keywords volatile and mean mutable?
How can you quickly find the number of elements stored in a static array? Why is it difficult to store linked list in an array?