0

What do You mean by inline function

11th Jul 2017, 1:46 PM
aiswarya shaji
aiswarya shaji - avatar
2 Answers
0
It's a function marked with 'inline' keyword. Compiler can replace the call of such function by its body which will work faster. There are not many cases where you can get significant performance by inlining. Just let the compiler make a decision in 90% cases.
11th Jul 2017, 2:53 PM
soman
0
when the function itself is in the middle of main() codes it is called inline function. it is used for decreasing the time of execution as the compiler doesnt have to jump out of main code. Although it is useful to only one calling as it needs to be defined on each call itself.
11th Jul 2017, 3:29 PM
DEVIL kingg
DEVIL kingg - avatar