Recursive call space

What is a stack space in recursion? how is it different from other space? what exactly happens when recursion depth limit is exceeded?

hi @govilayush,
During the recursive calls it stores some information.It is not different from other space.
There is specific amount of space that is allocated during a program execution and sometimes there are large amount of recursive calls which exceeds that buffer limit and hence stops the execution.
Please let me know if there is any other doubt.

can we change this buffer limit? Is there a way??

hi @govilayush
there is no way. to change that limit because there is already enough memory provided in which question can be done. So we have to optimise our code.
Please let me know if there is any other doubt.