fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. a int
  6. a = 5
  7. return 0;
  8. }
  9.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function 'main':
prog.c:5:2: error: 'a' undeclared (first use in this function)
  a int
  ^
prog.c:5:2: note: each undeclared identifier is reported only once for each function it appears in
prog.c:5:4: error: expected ';' before 'int'
  a int
    ^
stdout
Standard output is empty