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