fork download
  1.  
  2. for(int i = 0 ; i<10; i+2){
  3. printf("Hello World");
  4. sleep(1);
  5. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:2:1: error: expected identifier or ‘(’ before ‘for’
 for(int i = 0 ; i<10; i+2){
 ^~~
prog.c:2:18: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘<’ token
 for(int i = 0 ; i<10; i+2){
                  ^
prog.c:2:24: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘+’ token
 for(int i = 0 ; i<10; i+2){
                        ^
stdout
Standard output is empty