fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. char *sentence = NULL;
  5. strcpy(sentence, "HelloWorld");
  6. printf("%s", sentence);
  7. return 0;
  8. }
  9.  
Runtime error #stdin #stdout 0s 9288KB
stdin
Standard input is empty
stdout
Standard output is empty