I have this part of an if statement and I\'m getting a weird output.
int x = 10; if(1 < x < 5){ printf(\"F\\n\"); }
Why does it prin
If you are using C, you should have broken down the condition into two arguments :
if ( x > 1 && x < 5) { printf("F\n"); }