#include "Student.h" class StudentNode{ public: Student s; StudentNode* next; StudentNode(Student); StudentNode(Student, StudentNode*); void display(); };