Compiler Error C2087
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C2087.
identifier' : missing subscript
The definition of an array with multiple subscripts is missing a subscript value for a dimension higher than one.
The following sample generates C2087:
// C2087.cpp
int main() {
char a[10][]; // C2087
}
Possible resolution:
// C2087b.cpp
int main() {
char b[4][5];
}
Show: