Computer Science, asked by suryanarayana932, 7 months ago

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 shobhak2k2k1984
1

Answer:

order of execution

class B

class C

class A

Explanation:

I think this Is the answer

Similar questions