C语言设计一个学生学籍管理系统,要求文件形式保存,且用到链表
C语言设计一个学生学籍管理系统,要求文件形式保存,且用到链表
日期:2018-02-27 16:47:06 人气:2
#include#include#include//链表结点结构体声明typedef struct subjects{ char name[20]; float score;}sub;typedef struct student{ int num; char name[20]; sub subject[3]; struct student* next;}stu,*pstu;#define SIZE sizeof(stu)//函数申明pstu LoadInfo();void