what is the order of execution of inheritance in c++
Answers
Answered by
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
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