C语言学生管理系统(源代码)

#include <stdio.h>#include <stdlib.h>#include <string.h>#include <ctype.h>#define M 50const char str

#include&lt;stdio.h&gt; #include&lt;stdlib.h&gt; #include&lt;string.h&gt; #include&lt;ctype.h&gt; #defineM50 constcharstrStudentFilePath[]="studentInfo.___"; constcharstrCourseFilePath[]="courseInfo.___"; typedefstructMyInt { intnum; structMyInt*next; }CourseNumList,ScoreList; structstudent { intnum; charname[20]; char___; CourseNumList*courseNumList;// 存放的是课程的序号 ScoreList*courseScore;// 与上一个列表相对应的课程的成绩 intcourseSize; int__e; }stu[M]; typedefstructstudentStudent; intstuNum;// 系统中存在的学生的记录数 typedefstructCourse { intnumCourse; charname[20]; charteacherName[20]; structCourse*next; }CourseList; CourseList*pCourse=NULL;// 头指针 CourseList*currentPoint=NULL;// 工作指针 /**************************************************************************************************** ***** @Initialize 函数名: @ 作用:初始化系统的显示标头

腾讯文库C语言学生管理系统(源代码)