/in/foo.c: In function 'main':
/in/foo.c:8:2: error: expected ';' before 'if'
if(a<b)
^~
/in/foo.c:12:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(a<c)
^~
/in/foo.c:14:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
a=c;
^
/in/foo.c:16:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(b<c)
^~
/in/foo.c:18:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
b=c;
^
/in/foo.c:21:2: error: expected ';' before 'return'
return 0;
^~~~~~