1 struct s
2 {
3   int a;
4   int b;
5   short c;
6   int d[3];
7 };
8 
9 struct s s = { .b = 3, .d = {2,0,0} };
10 
main()11 main ()
12 {
13   if (s.b != 3)
14     abort ();
15   exit (0);
16 }
17