Multiple choice technology programming languages

The inserting of the code of a called function at the point where The function gets called is achieved by using

  1. Inline functions

  2. virtual functions

  3. Both A and B

  4. None of the Above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Inline functions are expanded at the call site, meaning the function body code is inserted directly where called rather than using a function call mechanism. This is done to eliminate function call overhead.