ivana_andreevska

Untitled

May 17th, 2021
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. void swap(int *x,int *y)
  4. {
  5.     int temp=*x;
  6.     *x=*y;
  7.     *y=temp;
  8. }
  9.  
  10.  
  11. int main()
  12. {
  13.     int x,y;
  14.     scanf("%d%d",&x,&y);
  15.     swap(&x,&y);
  16.     printf("%d %d",x,y);
  17.     return 0;
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment