Define inline function



Define inline function..

Answer / 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

More C++ General Interview Questions

what is the use of void main() in C++ language?

0 Answers  


What is the basic of c++?

0 Answers  


Explain terminate() and unexpected() function?

0 Answers  


Can we delete this pointer in c++?

0 Answers  


Explain calling an object's member function(declared virtual)from its constructor?

1 Answers  






When you overload member functions, in what ways must they differ?

0 Answers  


What does the ios::ate argument do?

0 Answers  


class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.

2 Answers   Quark,


what is object?

7 Answers  


How a new element can be added or pushed in a stack?

0 Answers  


founder of c++

7 Answers   Microtek, TCS, TeleCommand,


Evaluate !(1&&1||1&&0) a) Error b) False c) True

0 Answers  


Categories