Function inlining
Function inlining means that the compiler does not insert a function call into the machine code but inserts the whole function definition instead. That is inlining treats functions like macros.
Function inlining means that the compiler does not insert a function call into the machine code but inserts the whole function definition instead. That is inlining treats functions like macros.