7. Control Keywords
if else switch case default for while do break continue goto returnExamples:
if( a < b)
min = a;
else
min = b;
while( i < 10)
{
x = somefunc(i);
if( x == 0)
break;
++i;
}
if else switch case default for while do break continue goto returnExamples:
if( a < b)
min = a;
else
min = b;
while( i < 10)
{
x = somefunc(i);
if( x == 0)
break;
++i;
}