A composite data type made up
of a finite collection of not necessarily homogeneous elements called
members or fields. For example . . . an instance of the Car class called
thisCar
struct CarType
{
int year ;
char maker[10];
float price ;
} ;
CarType thisCar; //CarType variables
CarType myCar;