// C++ program to implement  Multilevel Inheritance #include <iostream.h> // single base class class Student { public: int rollno; void get_rollno(int rn) { rollno=rn; } void show_rollno() {     cout<<" Roll Number: "<<rollno<<endl; } }; // derived class from base …

Read more