hey there guys
the long and the short is that i want to print out the numbers 1 to 20, but missing out numbers 14 and 16.. dont ask why its long and boring! i know i could do something like
for(i=1;i<14; i++) {
do something
}
do something with the number 15
for(i=17;i<21; i++) {
do something
}
but ... is it possible to do
for(i=1;(i<14 && i!=14); i++) {
do something
}
is this at all possible?