如何用c语言制作一个学生信息管理系统,要求以文件形式保存
如何用c语言制作一个学生信息管理系统,要求以文件形式保存
日期:2020-03-03 13:40:21 人气: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 Loa