fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. for (int = 15; int > 0; int++)
  5. }
  6.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:4:11: error: expected identifier or ‘(’ before ‘=’ token
  for (int = 15; int > 0; int++)
           ^
prog.c:4:17: error: expected expression before ‘int’
  for (int = 15; int > 0; int++)
                 ^~~
prog.c:4:26: error: expected expression before ‘int’
  for (int = 15; int > 0; int++)
                          ^~~
prog.c:5:1: error: expected expression before ‘}’ token
 }
 ^
stdout
Standard output is empty