how to jump from 'for' statment
-
i have a lines of code just like the following and i whould like to jump after checking a specified condition and incressing the i ... somthing like that ...
for(int i=0;i<=10;i++) { // // some code.. // if(ok) // here if true i wanna jump and re enter // the 'for' but with value of i++ // // codes will only excute if ok=false; // }
how can i do something like that... ADEL K Khalil -
i have a lines of code just like the following and i whould like to jump after checking a specified condition and incressing the i ... somthing like that ...
for(int i=0;i<=10;i++) { // // some code.. // if(ok) // here if true i wanna jump and re enter // the 'for' but with value of i++ // // codes will only excute if ok=false; // }
how can i do something like that... ADEL K Khalil -
You are correct. - Nick Parker
My Blog | My Articles