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