C++ program to implement three classes using multiple inheritance
by Ranjith | March 13th, 2010.MULTIPLE INHERITANCES
AIM:
Write a program to illustrating how all the three classes are implemented in multiple inheritance mode
ALGORITHM
• Start the process
• Invoke the class M
• Invoke the another class N
• Invoke one more class,ie class P,which is inherited by both M and N
• Create an object for class p,ie P p
• Call p.get_m(),assign the value in to ‘m’
• Call p.get_n(),assign the value in [...]














