main()1 int main() { 2 union { 3 int i; 4 char c; 5 }; 6 i = 0xFFFFFF00; 7 c = 'A'; 8 return c; // break here 9 } 10