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