1 2 3 4 5 6 7 8 9 10 11 12 13
struct foo { int a : 5, : 4, b : 5; char c; int : 3, d : 8, : 0, e : 5; }; struct foo x; main () { printf (x); }