Contents

Which of the following is the correct structure of multiple inheritance?
a) class c: public A, public B{};      
b) class c: public A, public B[];
c) class c: public A, public B();         
d) none of these

a