1 typedef struct { 2 union { 3 struct { 4 unsigned int x; 5 unsigned int y; 6 }; 7 unsigned long long z; 8 }; 9 } Foo; 10 11 Foo var; 12