When you are programming in a language that allows you to use automatic allocation for very large objects, when and how do you worry about stack size? Are there any rules o
Shouldn't you be avoiding using the stack for allocating large objects in the first place? Use the heap, no?