Describe what happens when recursion functions are declared inline?
Ans) Inline functions property says whenever it will call; it will copy the whole definition of that function. Recursive function declared as inline makes the burden on the compilers implementation.
The size of the stack may/may not be overflow if the function size is big.