Open In App

C++ | Misc C++ | Question 1

Like Article
Like
Save
Share
Report

Inline functions are useful when
(A) Function is large with many nested loops
(B) Function has many static variables
(C) Function is small and we want to avoid function call overhead.
(D) None of the above


Answer: (C)

Explanation: Inline functions are generally used in place of small macros. They are substitute to macros and better than macros. See following for details.
http://en.wikipedia.org/wiki/Inline_function#Comparison_with_macros

Quiz of this Question


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads