评测信息

运行ID: 1119
src.c:1:10: error: #include expects "FILENAME" or <FILENAME>
#include void main(){ char a[80];
^
src.c:3:2: error: expected identifier or '(' before 'for'
for(int i=0, j=0; a[i]; i )
^
src.c:3:22: error: 'i' undeclared here (not in a function)
for(int i=0, j=0; a[i]; i )
^
src.c:3:27: error: expected '=', ',', ';', 'asm' or '__attribute__' before ' ' token
for(int i=0, j=0; a[i]; i )
^
src.c:9:4: error: 'j' undeclared here (not in a function)
a[j] = '\0';
^
src.c:25:1: error: expected identifier or '(' before '}' token
}
^