1.

What will be the order of execution of base class constructors in the following method of inheritance. class a: public b, virtual public c {...};

A. b(); c(); a();
B. c(); b(); a();
C. a(); b(); c();
D. b(); a(); c();
Answer» C. a(); b(); c();


Discussion

No Comment Found