1. 首页
  2. 课程学习
  3. C++/C
  4. C语言学生成绩管理系统txt

C语言学生成绩管理系统txt

上传者: 2019-09-24 21:27:24上传 TXT文件 4.06KB 热度 20次
#include#include#includetypedefstructStudent{intno;charname[10];floatscore[3];//threescoresfloataverage;//averagescorestructStudent*next;}Student;voidInitial(Student*p){p=(Student*)malloc(sizeof(Student));//theheadofthelinklistp->next=NULL;}
用户评论