Q. Inline functions are invoked at the time of
(a) Run time
(b) Compile time
(c) Both (a) & (b)
(d) None of these
Answers
Answered by
19
Complie time ✔️✔️
Answered by
1
Option b
Inline functions are invoked at the time of Compile time
Explanation:
- An inline function is a dominant notion in the C++ programming language. It improves the execution time of a program.
- An inline function is a call to the compiler and an optimization procedure used by the compiler.
- An inline function may improve compile-time overhead if someone modifies the code inside the inline function then all the calling position has to be recompiled because the compiler would want to displace all the code once again to exhibit the changes, otherwise, it will remain with old functionality.
Learn more on Inline functions
https://brainly.in/question/3826012
When will you make function inline and why?
https://brainly.in/question/6094682
Write a note on inline function.
Similar questions