What will be the order of execution of constructors in the following method of inheritance?
class A {...};
class B: public A{....};
class C: public B{....};
Answers
Answered by
1
Answer:
order of execution
class B
class C
class A
Explanation:
I think this Is the answer
Similar questions