手机
当前位置:查字典教程网 >编程开发 >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大小的方法】相关文章:

解析在Direct2D中画Bezier曲线的实现方法

使用ShellClass获取文件属性详细信息的实现方法

获取一个文件行数的方法

判断机器大小端的两种实现方法

VC WinExec打开指定程序或者文件的方法

探讨:将两个链表非降序合并为一个链表并依然有序的实现方法

C/C++指针和取地址的方法

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

解决C++中重定义的方法总结

ACE反应器(Reactor)模式的深入分析

精品推荐
分类导航