请问定义结构体这里后面的s[55]是什么意思啊?
struct stu{ int id; char name[50]; int a,b,c; double avg; }s[55];
定义了一个数组s,它有55个元素,而且每个元素都是struct stu的结构体形式