Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'array' : redefinition; different subscripts
The array is already declared with a different subscript.
The following sample generates C2369:
// C2369.cpp
// compile with: /c
int a[10];
int a[20]; // C2369
int b[20]; // OK