[Solved] multiple if statements in c for beginners [closed]
You are not following general if-else block property if(a==1 && b<=8) // This is independent if 1 { printf(“you”); } Then this is another if-else either of if or else in this block will get executed independently of what has previously happened if(a==2 && 5<b && b<=10) // This is independent if-else block 2 { … Read more