Re: A89: Clearing a string
[Prev][Next][Index][Thread]
Re: A89: Clearing a string
I suddenly started to doubt myself. (after all it is 7am an I haven't slept this
night)
Don't be suprised if I'm totally wrong :)
I will check it up after I have slept if noone has before.
//Olle
Olle Hedman wrote:
>
> Nope, it will work. a for statement makes the following code:
>
> for(expr1; expr2; expr3) {
> expressions;
> ...
> }
>
> makes a loop like this (in pseudocode):
>
> expr1
> loop:
> expressions
> ...
> expr3
> if expr2 goto loop
>
> //Olle
Follow-Ups:
References: