Build a struct with a struct inside

前端 未结 0 765
予麋鹿
予麋鹿 2020-12-14 15:16
typedef struct Course {
char *CourseID;
char *CourseName;
struct Course* next;
} COURSE; 

typedef struct Student{
int ID;
}STUDENT; 

Hey guys, I wa

相关标签:
回答
  • 消灭零回复
提交回复
热议问题