struct point { int x; int y; };
Это объявляет новый тип struct point
с двумя int
членами x
и y
.
struct point { int x; int y; } my_point;
Здесь также объявляется новый тип struct point
с двумя int
членами x
и y
, и это объявляет объект my_point
типа struct point
.