fork download
  1. #include<stdio.h>
  2. int main() {
  3. const char *hw = ""
  4. "Hello"
  5. " "
  6. "World" "!" "!" "!";
  7.  
  8. printf("%s", hw);
  9. }
Success #stdin #stdout 0s 4392KB
stdin
Standard input is empty
stdout
Hello World!!!