Can you please explain the order in which constructors are called when an object of a derived class is created?

Submitted by: Administrator
The constructors of any virtual base classes are called first in the order of inheritance.
Non-virtual base class constructors are called next.
The derived class constructor is called last.
Submitted by: Administrator

Read Online C++ Constructors Job Interview Questions And Answers