fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char *string = "ABCD";
  5. string = "EFGH";
  6. printf("%s", string);
  7. }
  8.  
  9. //https://pt.stackoverflow.com/q/102649/101
Success #stdin #stdout 0s 4340KB
stdin
Standard input is empty
stdout
EFGH