How is multi level inheritance is supported in C++ ??

India
July 31, 2010 10:07am CST
Object oreinted programming supports inheritance,I wanted to know how to use multi level inheritance in C++ .
2 responses
• India
12 Nov 10
Multi level inheritance where derived class is derived from another derived class. I can explain this by giving an example. Animals is base class.mamals is dervied from Animals base class. Horse is derived from mamals.
• India
31 Jul 10
deriving a new class from another derived class is known as multilevel inheritance ex consider 3 classes classA,classB,classC classB is derived from classA and calssC is derived from classB this is calles multi level inheritance for more info checkout this link www.indiastudychannel.com/resources/22334-C-Program-for-Multilevel-Inheritance.aspx