/in/foo.c: In function 'main':
/in/foo.c:5:2: error: 'inta' undeclared (first use in this function)
inta,b,c;
^~~~
/in/foo.c:5:2: note: each undeclared identifier is reported only once for each function it appears in
/in/foo.c:5:7: error: 'b' undeclared (first use in this function)
inta,b,c;
^
/in/foo.c:5:6: warning: left-hand operand of comma expression has no effect [-Wunused-value]
inta,b,c;
^
/in/foo.c:5:9: error: 'c' undeclared (first use in this function)
inta,b,c;
^
/in/foo.c:5:8: warning: left-hand operand of comma expression has no effect [-Wunused-value]
inta,b,c;
^
/in/foo.c:6:8: warning: missing terminating " character
scanf("%d%d%d,&a,&b,&c);
^
/in/foo.c:6:8: error: missing terminating " character
scanf("%d%d%d,&a,&b,&c);
^~~~~~~~~~~~~~~~~~
/in/foo.c:7:2: error: expected expression before 'if'
if(a>b)
^~
/in/foo.c:24:1: error: expected ';' before '}' token
}
^