for conditional handling question

K

Keith Thompson

rosario said:
so this could be the loop
e1; goto .2
.0: body;
.1: e3;
.2: if(e2) goto .0
.3:
if e2 is missing than e2=1
if body executes continue the for loop proceeds to .1: label
if the body has one break, proceeds to .3: label


and
while(e2)
{e3;
...
en;
}

is like

goto .1
.0: e3;
...
en;
.1: if(e2) goto .0
.2:

Will you *please* pick a single name and stick with it? I'm tired of
updating my killfile every time you change identities.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,083
Messages
2,570,590
Members
47,211
Latest member
JaydenBail

Latest Threads

Top