1 /* compound literals */ 2 3 struct p { 4 short a, b, c, d; 5 }; 6 7 foo() 8 { 9 struct p me = (struct p) {1, 2, 3, 4}; 10 me.a = me.b; 11 } 12