fork download
  1. #include <stdio.h>
  2.  
  3. void swap(int *a,int *b){
  4. int w;
  5. w=*a;
  6. *a=*b;
  7. *b=w;
  8. }
  9. void sort(int *x,int *y) {
  10. if(*x<*y){
  11. swap(x,y);
  12. }
  13. }
  14.  
  15. int main(){
  16. int x=3;
  17. int y=6;
  18. sort(&x,&y);
  19. printf("x=%d,y=%d\n",x,y);
  20.  
  21. return 0;
  22. }
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
x=6,y=3