C语言学生成绩管理系统txt
#include#include#includetypedefstructStudent{intno;charname[10];floatscore[3];//threescoresfloataverage;//averagescorestructStudent*next;}Student;voidInitial(Student*p){p=(Student*)malloc(sizeof(Student));//theheadofthelinklistp->next=NULL;}
下载地址
用户评论