/* Rafay Ahmad 23I-2526 */ #include using namespace std; struct Student{ string name; int rollNo; Student(){} Student(string name, int rollNo) : name(name), rollNo(rollNo){} }; class Course{ string name; int code; Student **students; int i; public: Course(string name, int code) : name(name), code(code), i(0){ students = new Student*[2]; } void enrollStudent(Student *s){ students[i] = s; i++; } friend ostream& operator<<(ostream& out, Course& course); }; ostream& operator<<(ostream& out, Course& course){ out<<"Course name: "<name<