What are C++ inline functions?



What are C++ inline functions?..

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

More C++ General Interview Questions

How do you remove an element from a set in c++?

0 Answers  


Can we inherit constructor in c++?

0 Answers  


You have to take 2 arrays of length 10. Input the values of array 1 from the user. Then copy the values of array 1 to array 2 in ascending order For example if user enters 9, 5, 6, 8, 1, 0, 2, 7, 4, 3 then copy the smallest element i.e. 0 first followed by 1, 2 and so

1 Answers  


What is cout flush?

0 Answers  


Define what is constructor?

0 Answers  






Which ide is best for c++?

0 Answers  


Is c++ free?

0 Answers  


What are punctuators in c++?

0 Answers  


What does namespace mean in c++?

0 Answers  


What is a "RTTI"?

6 Answers   HCL,


What is the maximum combined length of command line arguments including the space between adjacent arguments?

0 Answers  


What is implicit conversion/coercion in c++?

1 Answers  


Categories