fork download
  1. #include <stdio.h>
  2. int main(void) {
  3. printf(«Hello C!»);
  4. return 0;
  5. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:3:9: error: stray ‘\302’ in program
  printf(«Hello C!»);
         ^
prog.c:3:10: error: stray ‘\253’ in program
  printf(«Hello C!»);
          ^
prog.c:3:11: error: ‘Hello’ undeclared (first use in this function)
  printf(«Hello C!»);
           ^~~~~
prog.c:3:11: note: each undeclared identifier is reported only once for each function it appears in
prog.c:3:16: error: expected ‘)’ before ‘C’
  printf(«Hello C!»);
                ^~
                )
prog.c:3:19: error: stray ‘\302’ in program
  printf(«Hello C!»);
                   ^
prog.c:3:20: error: stray ‘\273’ in program
  printf(«Hello C!»);
                    ^
stdout
Standard output is empty