foo.cc: In function ‘int main()’:
foo.cc:7:13: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
7 | if(n%4==1 || n%4==2);
| ^~
foo.cc:8:25: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’
8 | printf("%d",1);
| ^~~~~~
foo.cc:9:17: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
9 | if(n%4==3 || n%4==4);
| ^~
foo.cc:10:21: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’
10 | printf("%d",0);
| ^~~~~~