I have a basic question related to multiple inheritance in C++. If I have a code as shown below:
struct base1 { void start() { cout << \"Inside base
a.base1::start(); a.base2::start();
or if you want to use one specifically
class derived:public base1,public base2 { public: using base1::start; };