News

condition: Here, a condition is a Boolean expression. If Boolean expression evaluates to true, the statement is executed again. When Boolean expression evaluates to false, the loops ends.
The do...while loop is closely related to while loop. In the do while loop, the condition is checked at the end of the loop. statement(s): A statement that is ...