1 struct ack { 2 char a, b, c; 3 }; 4 main()5 main() 6 { 7 struct ack bad; 8 9 foo(bad); 10 } 11 12 foo(c) 13 struct ack c; 14 { 15 } 16