What keyword is used before a function to make it an inline function?

  • function
  • inline
  • public
  • void
The inline keyword is used before a function in C++ to make it an inline function. An inline function is a request to the compiler to insert the code of the function at the calling point instead of performing a normal function call. This can improve performance in certain situations by reducing the overhead of function calls.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *