mirror of
https://github.com/yv1ing/Student-Information-Management-System.git
synced 2025-09-16 14:44:46 +08:00
9 lines
158 B
C
9 lines
158 B
C
struct stu{
|
|
char stu_num[20];
|
|
char name[20];
|
|
char gender[10];
|
|
int age;
|
|
float chinese,math,english;
|
|
struct stu *prev,*next;
|
|
};
|