#include void input(struct student *p); void output(struct student *p); struct student //구조체 선언 { char name[10]; int score[4]; float avg; };//aa; //전역변수 int main(void) { const char score[6][10] = { "Name","Kor","Eng","Mat","Total","Avg" }; struct student aa[3] = { 0 }; struct student *p = aa; input(aa); output(aa); } void input(struct student *p) { int j,i; for (i = 0; i < 3; i++) { scanf("%s", (p + i)->name); for (j = 0; j < 3; j++) { scanf("%d", (p + i)->score + j); (p + i)->score[3]...