struct and class
struct point { int x; int y; }; point p1; // Note: struct keyword not needed p1.x = 9; // and so on...