/in/foo.c: In function 'main':
/in/foo.c:4:2: error: 'inta' undeclared (first use in this function)
{inta,b,c,max;
^~~~
/in/foo.c:4:2: note: each undeclared identifier is reported only once for each function it appears in
/in/foo.c:4:7: error: 'b' undeclared (first use in this function)
{inta,b,c,max;
^
/in/foo.c:4:6: warning: left-hand operand of comma expression has no effect [-Wunused-value]
{inta,b,c,max;
^
/in/foo.c:4:9: error: 'c' undeclared (first use in this function)
{inta,b,c,max;
^
/in/foo.c:4:8: warning: left-hand operand of comma expression has no effect [-Wunused-value]
{inta,b,c,max;
^
/in/foo.c:4:11: error: 'max' undeclared (first use in this function)
{inta,b,c,max;
^~~
/in/foo.c:4:10: warning: left-hand operand of comma expression has no effect [-Wunused-value]
{inta,b,c,max;
^
/in/foo.c:5:18: error: 'a' undeclared (first use in this function)
scanf("%d%d%d",&a,&b,&c);
^