fork download
  1. #include <stdio.h>
  2.  
  3. void swap(int *a, int *b) {
  4. int temp = *a;
  5. *a = *b;
  6. *b = temp;
  7. }
  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, y;
  17. x=6;
  18. y=5;
  19.  
  20. sort(&x, &y);
  21.  
  22. printf("%d,%d\n", x, y);
  23.  
  24. return 0;
  25. }
Success #stdin #stdout 0s 5276KB
stdin
Standard input is empty
stdout
6,5