1.

In multiple inheritance, if class C inherits two classes A and B as follows, which class constructor will be called first: class A{ }; class B{ }; class C: public A, public B{ };

A. A()
B. B()
C. C()
D. Can’t be determined
Answer» B. B()


Discussion

No Comment Found