8
Statements
[stmt.stmt]
8.6
Iteration statements
[stmt.iter]
8.6.3
The
do
statement
[stmt.do]
1
#
The expression is
contextually converted to
bool
; if that conversion is ill-formed, the program is ill-formed
.
2
#
In the
do
statement the substatement is executed repeatedly until the value of the expression becomes
false
.
The test takes place after each execution of the statement
.