Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 Is it true that too many recursive calls may result into stack overflow? ?->(Show Answer!)
1. Is it true that too many recursive calls may result into stack overflow?
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.01 pm
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.