评测信息

运行ID: 9656
src.c: In function 'main':
src.c:5:10: error: expected '=', ',', ';', 'asm' or '__attribute__' before '>=' token
int a>=0,b<=10,c;
^
src.c:5:10: error: expected expression before '>=' token
src.c:6:5: error: 'c' undeclared (first use in this function)
c=a b;
^
src.c:6:5: note: each undeclared identifier is reported only once for each function it appears in
src.c:6:7: error: 'a' undeclared (first use in this function)
c=a b;
^
src.c:6:9: error: 'b' undeclared (first use in this function)
c=a b;
^
src.c:7:22: error: 'd' undeclared (first use in this function)
printf("sum is "%d"",c);
^
src.c:7:23: error: expected ')' before string constant
printf("sum is "%d"",c);
^