/in/foo.cc: In function 'int main()':
/in/foo.cc:9:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(i=0;i<13;i++)
^~~
/in/foo.cc:15:4: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(i=1;i<=9;i++)
^~~
/in/foo.cc:15:4: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
/in/foo.cc:17:5: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
if(s%11!=10)
^~
/in/foo.cc:24:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long int' [-Wformat=]
printf("-%d",s%11);
^
/in/foo.cc:28:10: warning: operation on 'i' may be undefined [-Wsequence-point]
for(i=i=0;i<12;i++)
~^~~~