手机
当前位置:查字典教程网 >编程开发 >C语言 >解决不用sizeof求出int大小的方法
解决不用sizeof求出int大小的方法
摘要:代码如下所示:复制代码代码如下:#includeintmain(intargc,char*argv[]){inta[2];unsignedi...

代码如下所示:

复制代码 代码如下:

#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

【解决不用sizeof求出int大小的方法】相关文章:

解决C++中事件不响应的方法详解

用C实现PHP扩展 Fetch_Url 类数据抓取的方法

sizeof()的简单介绍

解析VC中预编译头文件的深入分析

linux c程序中获取shell脚本输出的实现方法

使用C语言实现CRC校验的方法

深入linux下遍历目录树的方法总结分析

解析在WTL下使用双缓冲的实现方法

获取一个文件行数的方法

解析Linux下的时间函数:设置以及获取时间的方法

精品推荐
分类导航