right now I have a code of
what I want to know is about the use of the "continue", does it just fallout for while loops? or can it fall out for "for loops" too.Code:while (!eof) { for (int i=0; condtion; i++) { if (conditionX==-1) break; blah blah; } if (conditionX==-1) continue; more blah blah}
I mean can I change
toCode:if (conditionX==-1) break;
and still have it working like the original code (falling out the *complete* while and not just the for loop.)Code:if (conditionX==-1) continue



LinkBack URL
About LinkBacks


