for (i=1; i<8; i++) {
}
this will give me from 1 to 7
…but if I need to exclude numbers from 3 to 5, how should I do?
i<3 and i>5 and i<8
I’m messing up this…I’m sure…
for (i=1; i<8; i++) {
}
this will give me from 1 to 7
…but if I need to exclude numbers from 3 to 5, how should I do?
i<3 and i>5 and i<8
I’m messing up this…I’m sure…
:: Copyright KIRUPA 2024 //--