Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Let us all take a moment

Name: Anonymous 2014-04-15 21:47

to appreciate the underused an undervalued do-while. If I ever had a reason to use a while loop that executed before evaluating the predicate, the do-while loop is the loop I would choose.

Name: Anonymous 2014-04-16 12:32

GOTO IS THE ONLY USEFUL AND FLEXIBLE THING TO CREATE LOOPS

anus:
code ();

if (cond)
{
code2 ();
goto anus;
}


That would be equal with this invalid C code:

do
code ();
while (cond)
code2 ();

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List