/in/foo.c: In function 'FindMinCount':
/in/foo.c:5:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(j=x;j<n-1;j++)
^~~
/in/foo.c:8:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(i=0;i<n;i++)
^~~
/in/foo.c:8:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
/in/foo.c:11:4: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
return num;
^~~~~~
/in/foo.c:5:7: warning: 'x' is used uninitialized in this function [-Wuninitialized]
for(j=x;j<n-1;j++)
~^~