in C Plus Plus by

What is an inline function?

1 Answer

0 votes
by

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.

...