C语言班级信息管理系统.docVIP

  • 14
  • 0
  • 约7.54千字
  • 约 13页
  • 2019-06-02 发布于浙江
  • 举报
C语言班级信息管理系统 #include stdio.h #include malloc.h #include string.h #include io.h #define NULL 0 #define LEN sizeof(struct student) #define FILE_DATA_PATH c:\student.txt struct student { long int num; char name[20]; int age; char sex[4]; char birthday[10]; char address[30]; long int tele_num; char E_mail[20]; struct student *next; }; int TOTAL_NUM = 0; struct student *head = NULL; void welcome(); void mainmenu(); void record(); void insert(struct student *stu); void display(struct student *stu); void displayAll(); void query(); void query_by_num(); void query_by_name

文档评论(0)

1亿VIP精品文档

相关文档