fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3. int main(void) {
  4. char text[64] = "Hello";
  5. printf(text);
  6. strcpy(text, " World!");
  7. printf(text);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
Hello World!