Computer Science, asked by sakthiswaran06, 1 year ago

what is the order of execution of inheritance in c++​

Answers

Answered by babliparihar9353
0

Answer:

Order of Constructor Call with Inheritance in C++

Base class constructors are always called in the derived class constructors. Whenever you create derived class object, first the base class default constructor is executed and then the derived class's constructor finishes execution.

Answered by princetyagi368
0

Answer:

Order of Constructor Call with Inheritance in C++

Base class constructors are always called in the derived class constructors. Whenever you create derived class object, first the base class default constructor is executed and then the derived class's constructor finishesexecution.

mark as brainlist

Similar questions