1*11be35a1SLionel Sambuc /* C99 union initialization */ 2*11be35a1SLionel Sambuc struct { 3*11be35a1SLionel Sambuc int i[10]; 4*11be35a1SLionel Sambuc char *s; 5*11be35a1SLionel Sambuc } c[] = { 6*11be35a1SLionel Sambuc { { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }, 7*11be35a1SLionel Sambuc "foo" }, 8*11be35a1SLionel Sambuc }; 9