Files
2026-03-22 17:40:44 +08:00

15 lines
350 B
C

#include <stdio.h>
#include "student.h"
#include "teacher.h"
#include "class.h"
int main(){
struct Teacher* wan = new_teacher("Teacher", 20, TEACHER);
struct Student* stu = new_student("Student1", 18);
struct Class* cn = new_class("Chinese", 30, wan);
add_salary(wan, 10000);
add_student(cn, stu);
print(cn);
return 0;
}