fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int a = 7;
  5. int b = 7;
  6. a = a ^ b;
  7. b = b ^ a;
  8. a = a ^ b;
  9. printf("%d %d\n", a, b);
  10. return 0;
  11. }
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
7 7