龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > 软件开发 > C/C++开发 >

解决不用sizeof求出int大小的方法

时间:2014-05-19 04:25来源:网络整理 作者:网络 点击:
分享到:
本篇文章是对不用sizeof求出int大小的方法进行了详细的分析介绍,需要的朋友参考下

代码如下所示:

代码如下:

#include <stdio.h> 
int main(int argc, char *argv[]) 

    int a[2]; 
    unsigned int add1 = &a[0]; 
    unsigned int add2 = &a[1]; 
    printf("The address of a[0] is %u/n",add1); 
    printf("The address of a[1] is %u/n",add2); 
    printf("The size of int is %u/n", add2 - add1); 
}

输出结果是:
The address of a[0] is 3218821936
The address of a[1] is 3218821940
The size of int is 4

精彩图集

赞助商链接