Computer Science, asked by subhamsarma010, 9 months ago

what is inline functions in c language? and how to used it?​

Answers

Answered by pinjaraarifisha
4

Answer:

 \huge \underline \bold \pink {♡IT'S Shefali ♡:-}

\huge{\mathbb{\red{Hello Mate!!}}}

\huge\boxed{\fcolorbox{red}{yellow}{answer}}

<marquee> ❤️please mark it as brainliest answer ✌️✌️</marquee>

<br />&lt;p style="color:cyan;font-family:cursive;background:black;font size:25px;"&gt; The Concept of C Inline Functions. Inline functions are those functions whose definition is small and can be substituted at the place where its function call is made. ... Compiler interprets the inline keyword as a mere hint or request to substitute the code of function into its function call.  . <br /><br /><br /><br /><br />&lt;body aquacolor=b&gt; <br />\large\orange{} <br />&lt;font color=red&gt; <br />

&lt;marquee&gt;Shefali here&lt;/marquee&gt;

Answered by samina12359
0

Answer:

Hi

Explanation:

Inline function is a function that is expanded in line when it is called.

The Concept of C Inline Functions. Inline functions are those functions whose definition is small and can be substituted at the place where its function call is made. ... Compiler interprets the inline keyword as a mere hint or request to substitute the code of function into its function call.

A normal function becomes inline function when function prototype of the function is prepended with keyword “inline”.

The property of inline function is, compiler inserts the entire body of the function in the place where inline function name is used in the program.

Advantage of inline function is, it does not require function call and does not return anything from the function.

Disadvantage of inline function is, it increases file size as same function code is copied again and again in the program wherever it is called.

May be points repeat or have same meaning

Hope it help you

Similar questions