typedef struct Course { char *CourseID; char *CourseName; struct Course* next; } COURSE; typedef struct Student{ int ID; }STUDENT;
Hey guys, I wa