int aaaaa[10];printf("%d/n",sizeof(aaaaa));结果是40?
printf("%d/n",sizeof(aaaaa) / sizeof(int));
sizeof求的不是数组的长度而是数据占用的空间,单位是字节