用C语言编程实现一个简单的学生成绩管理系统
用C语言编程实现一个简单的学生成绩管理系统
日期:2017-12-15 08:48:01 人气:1
#include #include #include #includetypedef struct student{ char num[16]; char name[20]; float score[4]; struct student *next;} stu;stu *head; // 链头指针stu* create() // 创建链表,从文件读取信息 { printf("Reading student information: