I\'m working from an example piece of code that allocates a relatively large local array. (32768 to be precise) When I try the same I\'m getting behaviour that appears to be a s
Rather than mess with with the stack size, why don't you simply use a std::vector or even dynamically allocate an array yourself?