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.
Loading...
Related Quiz
- When an enum is declared, it creates a new _______.
- Tom is creating a game where the player's health decreases over time until it reaches zero. To implement this, which loop structure is best suited?
- How does the conditional (ternary) operator ? : associate in terms of precedence?
- To prevent memory leaks, every call to new should be matched with a call to _______.
- In a C++ application, you have a stream of data being logged...