/in/foo.c: In function 'main':
/in/foo.c:9:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(j=i+1;j<=9;j++)
^~~
/in/foo.c:16:4: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
if(b[0]<=200&&b[9]>=100)
^~
/in/foo.c:22:17: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(i=0;i<=9;i++)
^~~
/in/foo.c:27:14: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
printf("%d",m);
^~~~~~