Home / C Programming / Functions :: Discussion

Discussion :: Functions

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

  2. A.
    Yes
    B.
    No

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    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.


Be The First To Comment