INLINE FUNCTION Lecture 2.3
Prepared by: Mian Saeed Akbar
Inline function
 Keyword inline before function
 Asks the compiler to copy code into program instead of making function call
 Reduce function-call overhead
 Compiler can ignore inline
 Good for small, often-used functions
inline double cube(double s ){
return s * s * s;
}
Thank you
Please subscribe my channel for more videos
and courses

Lecture 2.3 Inline Function.pdf

  • 1.
    INLINE FUNCTION Lecture2.3 Prepared by: Mian Saeed Akbar
  • 2.
    Inline function  Keywordinline before function  Asks the compiler to copy code into program instead of making function call  Reduce function-call overhead  Compiler can ignore inline  Good for small, often-used functions inline double cube(double s ){ return s * s * s; }
  • 3.
    Thank you Please subscribemy channel for more videos and courses