解决不用sizeof求出int大小的方法
来源:爱站网时间:2019-10-13编辑:网友分享
许多c语言和初学者对sizeof运算符的本质并不十分清楚,有些初学者还把它看作一个函数,下文是爱站技术频道小编为大家带来的解决不用sizeof求出int大小的方法,一起去看看吧。
许多c语言和初学者对sizeof运算符的本质并不十分清楚,有些初学者还把它看作一个函数,下文是爱站技术频道小编为大家带来的解决不用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
以上就是解决不用sizeof求出int大小的方法,如果你想了解更多的专业知识,你必须要学习更多的专业知识,爱站技术频道有很多专业知识供你参考和学习。
上一篇:解决MyGUI中文换行的问题
下一篇:memset函数的使用分析