1 #include <stdio.h> 2 3 /* Make this invalid C++ */ 4 typedef struct { 5 int i; 6 char c; 7 } a; 8 9 static a b = { .i = 65, .c = 'r'}; 10 test()11 void test() { 12 b.i = 9; 13 fflush(stdout); 14 printf("el"); 15 } 16 17