Using too many inline functions can lead to ______ bloat.
- Code
- Compiler
- Memory
- Performance
Using too many inline functions can lead to memory bloat. When functions are inlined, their code is duplicated wherever they are called. This can lead to an increase in the size of the compiled code and, consequently, higher memory consumption.
Loading...
Related Quiz
- How does the virtual base class resolve the diamond problem in C++?
- Which of the following is true about function overloading in C++?
- Default arguments should be avoided in virtual functions as they don’t behave as most people expect and can lead to ________.
- How does the __forceinline keyword (in some C++ compilers) differ from the inline keyword?
- What is the main function in a C++ program responsible for?