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.
Loading...
Related Quiz
- What potential issue might arise when using switch-case statements with enumerated types?
- Which of the following data types is not a primitive data type in C++?
- You're developing an embedded system with constrained memory. What should be the main consideration when choosing between using float and double data types?
- Which keyword is used to catch exceptions in C++?
- How is a friend class defined in C++?