Frage im Vorstellungsgespräch bei Qualcomm

What is an inline function?

Antwort im Vorstellungsgespräch

Anonym

24. Feb. 2010

In C you can declare a function inline which indicates to the compiler to not generate a function call but to instead generate code in the calling function. This is often done for optimization, especially of short functions.