Guys, can u tell me a good programming practice to stop iteration inside a for loop based on a condition, that is, something equivalent to a break in a while loop
suppose i am iterating inside a for loop, looking for the first number divisible by 2,
i would do
[code]for(i=0;i<100;i++)
{
if(i%2==0)
{
printf("
I want to stop the loop");
[b]// what to do i put in here ?[/b]
}
}[/code]
Comments
{
if(i%2==0)
{
printf("
I want to stop the loop");
// what to do i put in here ?
break//will out off this loop
[/code]
{
if(i%2==0)
{
break;
}
}
{
if(i%2==0)
{
break;
}
}
{
if(i%2==0)
{
break;
}
}