fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. return 0;
  6. }
  7. printf("Hello: World?
  8. ")
  9. printf("hello: world?");
  10.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:7:8: warning: missing terminating " character
 printf("Hello: World?
        ^
prog.c:7:8: error: missing terminating " character
 printf("Hello: World?
        ^~~~~~~~~~~~~~
prog.c:8:1: warning: missing terminating " character
 ")
 ^
prog.c:8:1: error: missing terminating " character
 ")
 ^~
prog.c:9:1: error: expected declaration specifiers or ‘...’ before ‘printf’
 printf("hello: world?");
 ^~~~~~
prog.c:9:1: error: expected declaration specifiers or ‘...’ at end of input
stdout
Standard output is empty