The keyword _______ is used to specify that a function should be compiled inline. 

  • auto 
  • static 
  • inline 
  • register
The "inline" keyword suggests to the compiler that it should attempt to embed the function's code in the place where the function is called, avoiding a function call.
Add your answer
Loading...

Leave a comment

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