Which type of inheritance is followed in this code. All Questions › Category: Cpp Language › Which type of inheritance is followed in this code. 0 Vote Up Vote Down Anonymous asked 3 years ago class A { }; class B: public A { }; class C: public B { }; Options: Single Inheritance Multiple Inheritance Multilevel Inheritance None of the above