C语言,数的表示(整数)

编写test.c


#include <stdio.h>

int main()
{
    long int a,b;

    printf("sizeof int is %lu, sizeof long int is %lu\n", sizeof(int), sizeof(long int));    // the size of long int in 64bit machine is 8byte; in 32bit machine, the sizeof long int is 4byte

    a = 3000*1000*1000L;  // add suffix L indicate it 's a long int const, otherwise it's a int const, the result of 3000*1000*1000 will overflow
    printf("%ld, %ld\n", a, 3000*1000*1000L);

    b = 2000*1000*1000;   // the result of 2000*1000*1000 is less than the maximum of signed int value(0x7FFFFFFF =2147483647)
    printf("%ld, %ld\n", b, 2000*1000*1000L); // if there is not the 'L' suffix of 2000*1000*1000L, gcc will give a complier warning like "type not match"

}


编译 gcc -o test test.c

执行程序,结果如下:

sizeof int is 4, sizeof long int is 8
3000000000, 3000000000
2000000000, 2000000000




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值