Answer Posted / p suresh kumar
The __inline keyword tells the compiler to substitute the
code within the function definition for every instance of a
function call.
However, substitution occurs only at the compiler’s
discretion.
For example, the compiler does not inline a function if
its address is taken or if it is too large to inline.
| Is This Answer Correct ? | 10 Yes | 8 No |
Post New Answer View All Answers
Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)
What is the types of inheritance?
What is constructor overloading in oop?
What are properties in oop?
#include
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.
Why is destructor used?
when to use 'mutable' keyword and when to use 'const cast' in c++
Where You Can Use Interface in your Project
What is stream in oop?
What is solid in oops?
Is enum a class?
How do you achieve polymorphism?
What is the diamond problem in inheritance?
What is polymorphism and its types?