Identify the type of inheritance used in the following C++ code snippet.
class A { }; class B:public A { }; class C:public A { }; class D:public A { };
Reveal answer
Fill a bubble to check yourself
Identify the type of inheritance used in the following C++ code snippet.
class A { }; class B:public A { }; class C:public A { }; class D:public A { };