coderz.py

Keep Coding Keep Cheering!

Inline Function in C++

What is the Inline function & why is it used? When the program executes the function call instruction, the CPU saves the memory address of the instruction that follows the function call, copies the function’s arguments to the stack, and transfers control to the specified function. This process can occasionally result in overhead in function […]

October 11, 2022 | C++ | No comments

Advertisement