Decimals: numbers from 0 to 9; zero must not be the first number.
10進数: 0 ~ 9 までの数。ゼロは最初の数であってはなりません。
Examples:
例:
1 | 12, 111, -956 1007 |
Hexadecimals: numbers from 0 to 9, letters from a to f or A to F to represent the values 10 to 15; they start with 0x or 0X.
16進数: 0 ~ 9 からの数、a ~ f あるいは A ~ F の文字で 10 ~ 15 の値を表します。それらは 0x あるいは 0X から始めます。
Examples:
例:
1 | 0x0A, 0x12, 0X12, 0x2f, 0xA3, 0Xa3, 0X7C7 |
Its internal representation is a long 4-byte integer number. Integer constants can assume values from -2147483648 to 2147483647. If the constant exceeds this range, the result is undefined.
これらの内部表現は4バイトの整数です。 整数定数は -2147483648 から 2147483647 までの数値を想定することができます。 もし定数がこの限界を超えるなら、結果は不確定です。