nikolas_serafini

Lista 8 - Exercício 6

Aug 11th, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.12 KB | None | 0 0
  1. void wheel(int *a, int *b, int *c) {
  2.     int aux,aux2;
  3.  
  4.     aux = *a;
  5.     *a = *c;
  6.     aux2 = *b;
  7.     *b = aux;
  8.     *c = aux2;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment