integer-constant: decimal-constant integer-suffixopt octal-constant integer-suffixopt hexadecimal-constant integer-suffixopt one ofdecimal-constant: nonzero-digit decimal-constant digit
octal-constant:
0 octal-constant octal-digithexadecimal-constant: hexadecimal-prefix hexadecimal-digit hexadecimal-constant hexadecimal-digit
hexadecimal-prefix:
0x 0X
nonzero-digit: one of1 2 3 4 5 6 7 8 9
octal-digit: one of0 1 2 3 4 5 6 7
hexadecimal-digit: one of0 1 2 3 4 5 6 7 8 9 a b c d e f A B C D E F
integer-suffix: unsigned-suffix long-suffixopt unsigned-suffix long-long-suffix long-suffix unsigned-suffixopt long-long-suffix unsigned-suffixopt
unsigned-suffix: one ofu U
long-suffix: one ofl L
long-long-suffix: one ofll LL
821 An integer constant begins with a digit, but has no period or exponent part.
822 It may have a prefix that specifies its base and a suffix that specifies its type.
823 A decimal constant begins with a nonzero digit and consists of a sequence of decimal digits.
824
An octal constant consists of the prefix
825
A hexadecimal constant consists of the prefix
826 The value of a decimal constant is computed base 10;
827 that of an octal constant, base 8;
828 that of a hexadecimal constant, base 16.
829 The lexically first digit is the most significant.
830 The type of an integer constant is the first of the corresponding list in which its value can be represented.
831 .TABLE : l l l Suffix , Decimal Constant , Octal or Hexadecimal Constant
none ,
Both
Both
832 If an integer constant cannot be represented by any type in its list, it may have an extended integer type, if the extended integer type can represent its value.
833 If all of the types in the list for the constant are signed, the extended integer type shall be signed.
834 If all of the types in the list for the constant are unsigned, the extended integer type shall be unsigned.
835 If the list contains both signed and unsigned types, the extended integer type may be signed or unsigned.
Next
Created at: 2005-06-29 02:18:57
The text from WG14/N1124 is copyright © ISO