Logo

Programming-Idioms

History of Idiom 78 > diff from v75 to v76

Edit summary for version 76 by OC:
New Obj-C implementation by user [OC]

Version 75

2020-10-08, 12:50:04

Version 76

2020-10-10, 23:38:26

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
Variables
c
Extra Keywords
until
Extra Keywords
until
Code
do ... while(c);
Comments bubble
Precisely same as plain C