+3 votes
in Class 12 by kratos

Explain multilevel inheritance with a suitable C++ program.

1 Answer

+4 votes
by kratos
 
Best answer

In the above program student information is a derived class from student parents and student marks is derived class from student information. Std is a object belongs to student marks class. The object std can access the member functions of classes student marks, student information and student parents.

...