Home »
MCQs »
C++ MCQs
Which of the following statement is correct about inline function?
109. Which of the following statement is correct about inline function?
- A function that is substituted at the place of call.
- A function that is called at compile time
- A function that contains only looping statements
- None of the above
Answer: A) A function that is substituted at the place of call.
Explanation:
A function that is substituted at the place of call is called an inline function.