PLEASE CODE IN C++
Class declaration is as follows //Declaration of class car class Car { private: //Declaration of private data members int yearModel; string make; int speed; public:// Decalartion of public data members Car(int year,string m) //Decalartion of constructor with two argume ... See the full answer