How is multi level inheritance is supported in C++ ??
By vinaysudhir
@vinaysudhir (113)
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
         @pavangeddam (31)
 • 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
                    
 
                             
                        
 
                    
