/* Author Name: Baljeet S. Malhotra */
/* Student ID:  XXXXXXXXXXX         */ 
/* Program Name: Car-example10cpp */
/* Program Description: Example     */
/* Date of creation: 14th Oct. 2004 */
/* Lab section: XX                  */

#include <iostream>
using namespace std;

class Car {

  private:	// visible only inside the class
	int CarID;
        char color;
        int Model;

  public:
        void display();
};

void Car::display() {
 cout << "CarID is : " << CarID << " Color is : " << color << " Model is :" << Model << endl;
}

int main()
{
 Car car1; //There is an expected problem with the instantiation of this object
 car1.display();
 return 0;
}
