首页 > 其他 > 详细

C里面的类型字节长度和范围

时间:2014-05-10 07:18:19      阅读:397      评论:0      收藏:0      [点我收藏+]

32位平台

char 1个字节8位

short 2个字节16位

int 4个字节32位

long 4个字节

long long 8个字节

指针 4个字节

64位平台

char 1个字节

short 2个字节

int 4个字节

long 8个字节

long long 8个字节

指针 8个字节

范围

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 long -9223372036854775808 ~ +9223372036854775807 (8 Bytes)
double 1.7 * 10^308 (8 Bytes)

双精度浮点数(double)使用 64 位(8字节) 来存储一个浮点数。 它可以表示十进制的15或16位有效数字,其可以表示的数字的绝对值范围大约是\( 1.7 \times 10^{-308} , \text{1.7} \times 10^{308} \)

sign bit(符号): 用来表示正负号,1bit

exponent(指数): 用来表示次方数,11bits

mantissa(尾数): 用来表示精确度,52bits

\(\text{Mantissa} \times \text{2}^\text{exponent}\)

单精度浮点数使用32位(4字节)存储。

第1位表示正负,中间8位表示指数,后23位表示尾数。

C里面的类型字节长度和范围,布布扣,bubuko.com

C里面的类型字节长度和范围

原文:http://www.cnblogs.com/linyx/p/3719893.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!