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
Sure!
a.base1::start();
or
a.base2::start();