I have a program that passes in huge amounts of data, say 1000 variables, through recursion. The recursion would run to atleast 50 or 60 times. What I\'m worried about is, i
There could be two cases
Enough memory, recursion completes and you get ressult.
Not mough memory amd get StackOverFlowError and program exits
You will not have wrong results because of memory overwriting that does not happen