Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int x= 5;
  6. int y = 88;
  7. printf("X - %d\n",x);
  8. printf("Y - %d\n",y);
  9.  
  10. x = x^y;
  11. x = x^0x00;
  12. y = x^y;
  13. x = x - y;
  14.  
  15. printf("X - %d\n",x);
  16. printf("Y - %d\n",y);
  17.  
  18. return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement