Computer Science, asked by mayurpadade, 10 months ago

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

Answers

Answered by naysa81
1

Answer:

Inline function in C. Inline Function are those function whose definitions are small and be substituted at the place where its function call is happened. Function substitution is totally compiler choice.

To inline a function, place the keyword inline before the function name and define the function before any calls are made to the function. The compiler can ignore the inline qualifier in case defined function is more than a line.

Answered by Riyadas16
0

Answer:

The concept of C Inline Function. Inline Functions are those functions whose definition is small and can be substituted at the place where it's 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.

  • Hope its help you
Similar questions