/in/foo.cc: In function 'int main()':
/in/foo.cc:5:10: error: expected ',' or ';' before 'b'
int a=2 b=5 c=3;
^
/in/foo.cc:7:5: error: 'b' was not declared in this scope
if(b>a)
^
/in/foo.cc:13:5: error: 'c' was not declared in this scope
if(c>a)
^
/in/foo.cc:19:5: error: 'b' was not declared in this scope
if(b>c)
^
/in/foo.cc:19:7: error: 'c' was not declared in this scope
if(b>c)
^
/in/foo.cc:25:27: error: 'b' was not declared in this scope
printf("%d" "%d" "%d",a,b,c);
^
/in/foo.cc:25:29: error: 'c' was not declared in this scope
printf("%d" "%d" "%d",a,b,c);
^