RAD Studio
ContentsIndex
PreviousUpNext
E2324: Numeric constant too large (C++)

String and character escape sequences larger than hexadecimal or octal 77 can't be generated. 

Two-byte character constants can be specified by using a second backslash. For example,

\\

represents a two-byte constant. 

A numeric literal following an escape sequence should be broken up like this:

printf("\x0A" "12345");

This prints a carriage return followed by 12345.

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!