Embedded System Question:
Explain What happens when recursion functions are declared inline?
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.
The size of the stack may/may not be overflow if the function size is big.
Previous Question | Next Question |
Explain Operations involving unsigned and signed? unsigned will be converted to signed? | Explain Scope of static variables? |