#include "StudentNode.h" StudentNode::StudentNode(Student n){ s=n; next=NULL; } StudentNode::StudentNode(Student n, StudentNode* p){ s=n; next=p; } void StudentNode::display(){ s.display(); }