刚学完C语言,尝试着用C语言写一个小项目用来练练手,若有不足之处,欢迎各方大佬多多指点! 定义结构体 #include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct node { char ID[20]; //学号 char name[9]; //姓名 char sex; //性别 int age; //年龄 char nation[9]; //民族 struct node *next; }node,*pnode; 函数声明 void error_allot(pnode q...