1 struct buzz { 2 int a; 3 }; 4 5 struct flexible { 6 long count; 7 struct buzz lightyear[0]; 8 }; 9 10 struct flexible var; fun(struct flexible flex)11 void fun(struct flexible flex) { (void) flex; } 12 13