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