学生信息管理c语言程序
/*“学生信息管理系统” c语言程序 使用前请先建立”FILE.DA”和”superUser.txt”文件!*/#include"malloc.h"#include"conio.h"#incl
/*“” c”FILE.DA””superUser.txt” 学生信息管理系统语言程序使用前请先建立和文 */ 件! #include"malloc.h" #include"conio.h" #include"string.h" #include"ctype.h" #include"stdio.h" #define LEN sizeof(struct student) struct student { char No[6],name[10],sex[5],age[4]; char className[10],address[30],tel[15]; struct student *next; }; struct student *head; // 函数声明 int Add(void);

