/* * struct.c */ struct point { int x, y; }; int main(int argc, char *argv[]) { struct point p1; p1.x = 12; p1.y = 21; }