expected constant expression
The context requires a constant expression. The following sample generates C2057:
int i; // use the line below to resolve the error // const int i = 8; int b[i]; // C2057 void main() { }