struct a{…};//定义结构体struct a b[20];//定义了一个数组b ,其包含20个结构体a
struct a { ... }; //结构体初始法struct b[20]= { ... }; //定义结构体数组 b