6_5_51_compound_assign_bitwise.c (91B)
1 int test_main(void) { 2 int x = 0xff; 3 x &= 0x7f; 4 x ^= 0x55; 5 x |= 0x00; 6 return x; 7 }