how to set stack size with GCC MinGW - C++ Forum
There technically are ways of making an arbitrarily large stack, if you're willing to mess around with Assembly. It's a really ugly solution, though, and I don't recommend it ever. IMO, if you have to process an arbitrarily large data structure recursivel...