关于sizeof的几个问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于sizeof的几个问题相关的知识,希望对你有一定的参考价值。

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 
 4 int main(int argc, char const *argv[])
 5 {
 6     char *pstr;
 7     int a[]={1,2,3,4,5,6};
 8     pstr=(char *)malloc(sizeof(char)*10);
 9     printf("%d\\n", sizeof(pstr));
10     printf("%d\\n", sizeof(a));
11     return 0;  
12 }  

运行结果:

技术分享

 

 sizeof求的是字节数啊啊啊啊啊啊!!!!!!!!!!!!!!

 

 另:sizeof是一个关键字而不是函数

 

以上是关于关于sizeof的几个问题的主要内容,如果未能解决你的问题,请参考以下文章

解释'空'C数组(int a = {};)

关于片段生命周期

关于sizeof的几个问题

关于sizeof()size()的有些问题

关于 sizeof 溢出 size_t 的 C 标准

几个关于js数组方法reduce的经典片段