4.14.c 173 B

12345678910111213
  1. #undef swap
  2. #define swap(t,w,y) { t temp=w; w=y; y=temp; }
  3. #include <stdio.h>
  4. int main()
  5. {
  6. int x=1;
  7. int y=2;
  8. swap (int,x,y);
  9. printf("%d %d \n",x,y);
  10. return 0;
  11. }