- 结构体变量大小能被其最宽基本类型成员变量整除
- 结构体每个成员变量相对于结构体首地址的偏移量(offset)都是最宽成员变量的整数倍
- 结构体整体大小内被最宽基本类型成员大小整除
# include <stdio.h>//引用函数库
# include <stdlib.h>
struct info{
char c;//因为int缘故自动补全为4个字节
int sh;//4个字节
char name[9];//因为int缘故自动补全为12个字节
};
void main(){
printf("%d\n",sizeof(struct info));
printf("基本成员:\nchar:%d short:%d int:%d\n",sizeof(char),sizeof(short),sizeof(int));
}