Inline Specifier

From Embedded Systems Learning Academy
Revision as of 00:31, 15 December 2016 by Proj user8 (talk | contribs) (Created page with "'''inline''' is a specifier for a function in C/C++ that tells the compiler to replace the function call in assembly with the contents of the function. === Basic Example of t...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

inline is a specifier for a function in C/C++ that tells the compiler to replace the function call in assembly with the contents of the function.

Basic Example of the inline specifier

inline Specifier With a Recursive Function