C++
do
The do keyword specifies a loop whose condition is checked at the end of each iteration.
The body of a do loop is always executed at least once.
The semicolon after the condition expression is always required.
Syntax:do
{
statement 1;
statement 2;
â¦â¦â¦â¦...
statement n;
}
Example:int i;
do {
print("%d ",i);
i++;
}
Content
License.
All information of this service is derived from the free sources and is provided solely in the form of quotations.
This service provides information and interfaces solely for the familiarization (not ownership) and under the "as is" condition.
Copyright 2016 © ELTASK.COM. All rights reserved.
Site is optimized for mobile devices.
Downloads: 84 / 158777607. Delta: 0.00123 с