Answer Posted / hrpynux@gmail.com
C++ provides an inline functions to reduce the function call overhead. Inline function is a function that is expanded in line when it is called. ... This substitution is performed by the C++ compiler at compile time. Inline function may increase efficiency if it is small.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How does class accomplish data hiding in c++?
Name four predefined macros.
Which bitwise operator is used to check whether a particular bit is on or off?
What does obj stand for?
What do the header files usually contains?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
In inline " expression passed as argument are evalauated once " while in macro "in some cases expression passed as argument are evaluated more than once " --> i am not getting it plz help to make me understand....
Is it possible to have a recursive inline function in c++?
Comment on c++ standard exceptions?
Explain public, protected, private in c++?
Write about the members that a derived class can add?
Give example of a pure virtual function in c++?
Is there a c++ certification?
Explain the uses of static class data?
What is virtual function? Explain with an example