(Using C++ create a Car Instrument Simulator)
Car Instrument Simulator
Create the following classes: Car, Odometer, FuelGauge.
The Car class allows for the instantiation of a Car object.
The Car object will contain (via composition) an Odometer
object, and a FuelGauge object.
The Car object will also include "make", "model", and "color" as
string properties (instance variables).
In the Car constructor method, you will create a FuelGauge
object, passing 15 as an argument into the FuelGauge constructor
indicating the number...