Expand Minimize
This topic has not yet been rated - Rate this topic

Compiler Error C2087 (Windows CE 5.0)

Windows CE 5.0
Send Feedback

'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

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.


Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.