Discussion Forum : Functions
Question -

Is it true that too many recursive calls may result into stack overflow?

Options:
A .  Yes
B .  No
Answer: Option A

Yes, too many recursive calls may result into stack overflow. because when a function is 

called its return address is stored in stack.

After sometime the stack memory will be filled completely. Hence stack overflow error will occur.



Was this answer helpful ?
Next Question
Submit Your Solution hear:

Your email address will not be published. Required fields are marked *