signed char: -127 to 127 (note, not -128 to 127; this accommodates 1's-complement platforms)unsigned char: 0 to 255- "plain" 
char: -127 to 127 or 0 to 255 (depends on default char signedness) signed short: -32767 to 32767unsigned short: 0 to 65535signed int: -32767 to 32767unsigned int: 0 to 65535signed long: -2147483647 to 2147483647unsigned long: 0 to 4294967295signed long long: -9223372036854775807 to 9223372036854775807unsigned long long: 0 to 18446744073709551615
Комментариев нет:
Отправить комментарий