/in/foo.c: In function 'main':
/in/foo.c:18:4: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(a[i][k]<min) min=a[i][k];printf("%d ",min);
^~
/in/foo.c:18:32: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(a[i][k]<min) min=a[i][k];printf("%d ",min);
^~~~~~
/in/foo.c:27:6: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(a[j][k]>max) max=a[j][k];printf("%d ",max);
^~
/in/foo.c:27:34: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(a[j][k]>max) max=a[j][k];printf("%d ",max);
^~~~~~