do-while loop
From cppreference.com
Executes a loop.
Used where code needs to be executed several times while some condition is present. the code is executed at least once.
Contents |
[edit] Syntax
do loop_statement while ( cond_expression ) | |||||||||
[edit] Explanation
cond_expression shall be an expression, whose result is convertible to bool. It is evaluated after each execution of loop_statement. The loop continues execution only if the cond_expression evaluates to true.
If the execution of the loop needs to be terminated at some point, break statement can be used as terminating statement.
If the execution of the loop needs to be continued at the end of the loop body, continue statement can be used as shortcut.
[edit] Keywords
[edit] Example
This section is incomplete Reason: no example |