IS it possible ?
I have doubt in inheritance.Example is given below
class A
{
somefunction()
}
class B:A
{
somefunction1()
}
class C:B
{
somefunction2()
}
So is it possible to inherit the class B in C..so that i can get the members inside B and A ?
What the technical term called for this...Mutiple inheritance ? or some thing else ?
Thanks in advance
Sridharan.M