mirror of
https://github.com/yv1ing/Student-Information-Management-System.git
synced 2025-09-16 14:44:46 +08:00
5 lines
87 B
C
5 lines
87 B
C
struct user{
|
|
char account[20];
|
|
char password[20];
|
|
struct user *next;
|
|
}; |