fork download
  1. #include <stdio.h>
  2.  
  3. void swap(int *a,int *b);
  4.  
  5. int main(void) {
  6. int a=2,b=3;
  7.  
  8. swap(&a,&b);
  9.  
  10. printf("%d,%d",a,b);
  11.  
  12. return 0;
  13. }
  14.  
  15. void swap(int *a,int *b){
  16. int w;
  17.  
  18. w = *a;
  19. *a = *b;
  20. *b = w;
  21. }
  22.  
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
3,2