Usage
Syntax: do { code; } while (condition);
Explanation
do .. while loops is similar to while, the only difference being that the block of code is executed at least once, before checking if the condition is TRUE.
Just like a while loop, you can end the loop's execution by using break, return or by making the condition FALSE.
Example
temp.counter = 10; do { temp.counter++ } while (temp.counter < 10);
..temp.counter will increase only by one in this loop, because the condition is false. However, this differs from a while loop because the code block in a while loop would not have been executed at all.
Categories
CategoryLanguageConstruct
There are no comments on this page. [Add comment]