sbn.cassigment/work1/student_tag.h

10 lines
178 B
C
Raw Normal View History

2020-07-31 17:49:59 +07:00
#include "./person_tag.h"
#include "./course_tag.h"
struct student_tag
{
struct person_tag student_info;
struct course_tag course_info;
struct student_tag *next;
};