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