Examine the following class declarations:
class Van{protected: int passengers;public: Van(int p) { passengers = p; }};class FourByFour{protected: double cargoWeight;public: FourByFour(float w) { cargoWeight = w; }};
Write the declaration of a class named SportUtility. The class should be derived from both the Van and FourByFour classes above. (This should be a case of multiple inheritance, where both Van and FourByFour are base classes.)
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.