1 2 3 4 5 6 7 8 9
struct s { struct { union { float z; char *c; } b; } a[5]; }; int x = __builtin_offsetof(struct s, a[2].b.c);