Class B
           {
                       Public:
                                   Void b1();
                       Protected:
                                   Void b2();
           };
           Class A : public B
           {
                       Public:
                                   Void a1();
                       Protected:
Void a2();
           };
           Class C: public A
           {
                       Public:
                                   Void c1();
           };
Void main ()
{
B temp1; A temp2; Ctemp3;
}
          ÂÂ
- Name all member functions of all classes visiblethrough temp1 in the main function?
- Name all member functions of all classes visiblethrough temp2 in the main function?
- Name all member functions of all classes visiblethrough temp3 in the main function?
- Which class is the parent of class A?
- Which class is the child of class A?