struct xyz { int z; struct { int x; int y; }; }; int main() { struct xyz abc; abc.x = 5; return abc.x; }