Pick the incorrect statement about inline functions in C++?
Pick the incorrect statement about inline functions in C++? Correct Answer They are generally very large and complicated function
Inline are functions that are expanded when it is called. The whole code of the inline function gets inserted/substituted at the point of call. In this, they help in reducing the function call overheads. Also they save overhead of a return call from a function. Inline functions are generally kept small.