0

could someone just help me to understand the working of an inline function

21st Jul 2016, 2:56 PM
gowtham
2 Answers
+ 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
21st Jul 2016, 3:21 PM
Yogesh
0
thanks yogesh
21st Jul 2016, 3:51 PM
gowtham