1 struct s_flex { 2 int i; 3 long f[]; 4 }; 5 6 union s { 7 struct s_flex flex; 8 char buf[200]; 9 }; 10 11 static union s a[2]; 12