fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char* tab = malloc(20);
  5. printf("%p\n", tab);
  6. tab = "asdasdasd";
  7. printf("%p\n", tab);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 2424KB
stdin
Standard input is empty
stdout
0x8b98008
0x8048594