0
could someone just help me to understand the working of an inline function
2 ответов
+ 2
inline function is compiler optimization technique.....when compiler sees the function declared as inline it replace all call of that function with function body. but there are certain rules that to follow before declaring as inline e.g function should not have loop or function should not be so big
0
thanks yogesh