Question: Which statement is true about the code below? 1 : #include 2 : using namespace std; 3 : 4 : class Car { 5 :
Which statement is true about the code below?
: #include
: using namespace std;
:
: class Car
: void doSomething
: cout "drive" endl;
:
: ;
:
: class Horse
: void doSomething
: cout "run" endl;
:
: ;
:
: class Mustang : public Car, public Horse
:
: ;
:
: int main
: Mustang m;
: mdoSomething;
:
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
