#include "stdio.h" #include "malloc.h" #include "string.h" #include "stdlib.h" #include "conio.h" #define M 3 struct student { char num[10]; /* 学生的学号 */ char name[20]; /* 学生的姓名 */ char sex[5]; /* 学生的性别 */ int age; /* 学生的年龄 */ char birth[20];...