Tagged Questions
4
votes
3answers
119 views
Different behavior of compilers with array allocation
I recently found a interesting behaviour of g++ when compared with MSVC++ 2008. Consider this tiny program:
#include <cstdlib>
const int ARR_LENGTH = 512;
void doSomething( int iLen );
int ...