fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char *a = "home";
  5. char *b = "root";
  6. char *c = a, *d = b;
  7. printf("%s %s\n", a, b);
  8. a = d;
  9. b = c;
  10. printf("%s %s \n", a, b);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 4344KB
stdin
Standard input is empty
stdout
home root
root home