CPoint point = { 5, 5 };struct Rectangle rect = { .size = {10, 10}, .point = point }; struct Size { int width, height;};typedef struct { int top, left;} CPoint;struct Rectangle { struct Size size; CPoint point;};