#include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct Stu { char name[110]; int age; int score; }node; struct Stu a[1010]; int n; int&n...