我得到以下 56 个字节。谁能解释这是怎么回事?
#include <stdio.h>
typedef struct how_many_bytes {
long s[4];
char c, e;
int i[2];
char *d;
} How_Many_Bytes;
int main(){
printf("%lu ", sizeof(How_Many_Bytes));
}
不应该是 (4*8) + 1 + 1 + 2(用于填充)+ 4 + 4 + 8 = 52 字节