#include"stdio.h"这个预处理命名标准输入输出 #define N 4 定义一个字符常量N值为4 struct Student 结构体别名STUDENT { int name[20]; 姓名 int score [3]; 分数 float aver; 平均分 }; int c[N]; 定义一个数组表示有4个人 ...