结构体数组:有一个数组,每个元素是一个结构体类型。
#include <stdio.h> #include <stdlib.h> struct Teach { char teaName[10]; int teaAge; }; int main(void) { struct Teach tea[3] = { {"小赵",11},{"小李",12},{"小吴",14} }; printf("%s,%d ", tea[0].teaName, tea[0].teaAge); system("pause"); return 0; }