/in/foo.c: In function 'main':
/in/foo.c:13:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(i=0;i<n1;i++)
^~~
/in/foo.c:15:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
min1=arr[0];
^~~~
/in/foo.c:26:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(i=0;i<n2;i++)
^~~
/in/foo.c:28:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
min2=arr2[0];
^~~~