Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.08 KB | None | 0 0
  1. void swap(int *xp, int *yp)
  2. {
  3. int temp = *xp;
  4. *xp = *yp;
  5. *yp = temp;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement