/* 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 Stack
	int CarID;
        char color;
        int Model;
};
                                     
int main()
{

 Car car1; //There is an expected problem with the instantiation of this object
 return 0;
}
