Logo

Programming-Idioms

History of Idiom 78 > diff from v71 to v72

Edit summary for version 72 by programming-idioms.org:
[D] DPaste has been down for a while ✝

Version 71

2019-09-27, 21:38:02

Version 72

2020-05-21, 22:07:18

Idiom #78 "do while" loop

Execute a block once, then execute it again as long as boolean condition c is true.

Idiom #78 "do while" loop

Execute a block once, then execute it again as long as boolean condition c is true.

Variables
c
Extra Keywords
until
Extra Keywords
until
Code
do
{
    something;
    somethingElse;
}
while (c);
Code
do
{
    something;
    somethingElse;
}
while (c);
Demo URL
http://dpaste.dzfl.pl/337d7e4efcab