/in/foo.c: In function 'main':
/in/foo.c:5:7: warning: comparison of constant '10000000' with boolean expression is always true [-Wbool-compare]
5 | 3<=n<=10000000;
| ^~
/in/foo.c:5:4: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
5 | 3<=n<=10000000;
| ~^~~
/in/foo.c:5:3: warning: statement with no effect [-Wunused-value]
5 | 3<=n<=10000000;
| ^
/in/foo.c:7:12: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
7 | for(i=2,2<i<n,i++;)
| ~^~
/in/foo.c:7:10: warning: right-hand operand of comma expression has no effect [-Wunused-value]
7 | for(i=2,2<i<n,i++;)
| ^
/in/foo.c:7:21: error: expected expression before ')' token
7 | for(i=2,2<i<n,i++;)
| ^
/in/foo.c:8:14: error: expected expression before '=' token
8 | { (n%i!==0)
| ^