看书看到一半突然发现有这个地方怪怪的,简单的说
就是利用sizeof()来看字节的大小看不懂....。
程式码如下:
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
struct data
{
char name[10];
int math;
}student={"Bird",98};
printf("sizeof(student)=%d\n",sizeof(student));
system("pause");
return 0;
}
此时印出的是16
把char name[10]改成char name[11]印出的还是16
改成[20]是24
改成[50]是56
改成[51]是56.....
有先了解一下 int是4个字节,char是1个字节
请问造成这些原因是什么呢?谢谢