Advertisement
Guest User

Untitled

a guest
Nov 20th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.09 KB | None | 0 0
  1. void inplace_swap(int *x, int *y) {
  2.     *y = *x ^ *y;
  3.     *x = *x ^ *y;
  4.     *y = *x ^ *y;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement