合理改变结构体体元素声明顺序,节省内存空间
#include <stdio.h> typedef struct Goods { char a[18];//18 double b;//8 char c;//1 int d;//4 short e;//2 }Goods;...