C++ Programmer Question:
What is an inline function in C++?

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.
Previous Question | Next Question |
Tell me what do you mean by persistent and non persistent objects? | Please explain what is a reference variable in C++? |