Compiler Error C2087 (Windows CE 5.0)
Windows CE 5.0
'identifier' : missing subscript
The definition of an array with multiple subscripts is missing a subscript value for a dimension higher than one.
The following example shows ways this error might occur.
int func(a)
char a[10][]; // error
{ }
int func(a)
char a[][5]; // OK
{ }
Send Feedback on this topic to the authors
© 2006 Microsoft Corporation. All rights reserved.