This is my code:
int main()
{
const int LEN = 5;
int x[LEN];
}
VS10 says:
error C2057: expected constant expression
error C2466: cannot allocate an array of constant size 0
error C2133: 'x' : unknown size
I even tried the the code in this page and it gives the same problem (I commented the code which gives the error, and uncommented the correct one): http://msdn.microsoft.com/en-us/library/eff825eh%28VS.71%29.aspx
If I was trying a crappy compiler, I would think it's a bug in the compiler, but it's VS2010!
#definefor this? – William Dec 16 '10 at 6:15#defines are not a good way to define constants, because they use the preprocessor and lack typing information and such; newer languages often don't even have the equivalent. Constants like this are better practice in most situations. – Mehrdad Dec 16 '10 at 6:19