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