#include<stdio.h> #include<stdlib.h> typedef struct student { int xh; char name[10]; int score[4]; struct student *link; }STUDENT; void Output (struct student *head); struct student *Input(struct student *head); main() { char n; struct stud...