fork download
  1. #include <cstdio>
  2.  
  3. int main()
  4. {
  5. volatile signed char x = 0x80, y = 0x80;
  6.  
  7. int a = x ^ y;
  8. signed char b = x ^ y;
  9.  
  10. printf("%d %d\n", a, b);
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
0 0