Embedded System Question:

Explain What happens when recursion functions are declared inline?

Tweet Share WhatsApp

Answer:

Inline functions property says whenever it will called, it will copy the complete definition of that function. Recursive function declared as inline creates the burden on the compilers execution.

The size of the stack may/may not be overflow if the function size is big.

Download Embedded System PDF Read All 21 Embedded System Questions
Previous QuestionNext Question
Explain Operations involving unsigned and signed? unsigned will be converted to signed?Explain Scope of static variables?