c语言程序设计??学籍管理
c语言程序设计??学籍管理
日期:2016-05-24 03:16:48 人气:1
"学生学籍管理"的C程序
#include
#include
#include
struct list{
int num;
char name[256];
int china;
int english;
int math;
struct list *next;
};
typedef struct list node;