conditional loops :: while / do while
while ( ) // loop header { } while (exit condition) { } while (i > 10) { } // in this case the loop will turn at least once do { } while (1 > 10);
while ( ) // loop header { } while (exit condition) { } while (i > 10) { } // in this case the loop will turn at least once do { } while (1 > 10);