首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ >

C/C++ 数据范畴

2013-09-24 
C/C++ 数据范围速查表:char -128 ~ 127 (1 Byte) short -32767 ~32768 (2 Bytes) unsigned short 0 ~ 6553

C/C++ 数据范围
速查表:

char -128 ~ +127 (1 Byte)

short -32767 ~ + 32768 (2 Bytes)

unsigned short 0 ~ 65536 (2 Bytes)

int -2147483648 ~ +2147483647 (4 Bytes)

unsigned int 0 ~ 4294967295 (4 Bytes)

long == int long long -9223372036854775808 ~ +9223372036854775807 (8 Bytes)

double 1.7 * 10^308 (8 Bytes)

热点排行