for (i = 0; i < 5; i++) { cout «"Adam \n";
break; -
cout «"Eve \n";
// Seems to loop five times
// Never executes
Terminate the loop
Another iteration
for (i = 0; i < 5; i++) // Does loop five times
{ cout «"Adam \n";
continue; -
cout «"Eve \n" ; // Never executes
}