b1: if(){
sstmts;
continue b1;
}
sstmts;
continue b1;
}
for(a=start; a< finish; a=a++)
{
myValue=importantValue();
if(myValue==SOME_IMPORTANT_CONSTANT)
{
continue;
}
doSomething();
}
if(!dontCareValue)
{
betterDoSomething();
}
/* Or a not so clean solution */
if(dontCareValue) /* do nothing for if (we could omit {} and use ; if we really wanted */
{}
else
{
betterDoSometing();
}
Comment