Compiler Error C2041 (Windows CE 5.0)

Send Feedback

illegal digit 'character' for base 'number'

The specified character is not a legal digit for the base (such as octal or hex).

The following example shows ways this error might occur.

int i = 081; // error, 8 is not a legal digit
int i = 071; // OK

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.