'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:
int func(a) char a[10][]; // error { } int func(a) char a[][5]; // OK { }