Files
Student-Information-Managem…/heads/users.h
2022-09-28 16:24:43 +08:00

5 lines
87 B
C

struct user{
char account[20];
char password[20];
struct user *next;
};