C++ Programmer Question:
Download Questions PDF

What is an inline function in C++?

C++ Programmer Interview Question
C++ Programmer Interview Question

Answer:

A function prefixed with the keyword inline before the function definition is called as inline function. The inline functions are faster in execution when compared to normal functions as the compiler treats inline functions as macros.

Download C++ Programmer Interview Questions And Answers PDF

Previous QuestionNext Question
Tell me what do you mean by persistent and non persistent objects?Please explain what is a reference variable in C++?