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
for(i=0;i<100;i++)
{
if(i%2==0)
{
printf("\nI want to stop the loop");
[B] // what to do i put in here ?[/B]
}
}