/in/foo.c: In function 'main':
/in/foo.c:13:18: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
13 | {if(n%i==0)
| ^~
/in/foo.c:14:49: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
14 | printf("%d is not a primer!",n);break;
| ^~~~~
/in/foo.c:18:18: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
18 | {if(n%i!=0)
| ^~
/in/foo.c:19:53: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
19 | printf("%d is a primer!",n);break;}
| ^~~~~