D3|\||\|!$ wrote, On 2008-03-05 20:32:
>> If so, here's a hint: regardless of the value of i, the expression
>>  (i<10,000)  always has a value of zero.
> 
> Well!! I believe you're mistaking C code for some-alien-programming-
> language... Try running/debugging the code below: should clarify your
> confusion...

> int main(void) {
>     for(int i = 0; (i < 3); i++) {
>         puts("Mr. Bolyard, you're mistaken about C code... :-)\n");
>     }
>     return 0;
> }

I didn't write anything about the expression (i < 3).
I wrote about the expression (i<10,000) which is the expression you used
in your previous email.  Try that EXACT expression in your test program
above (don't change a single character), instead of (i < 3) and see for
yourself.

_______________________________________________
dev-tech-crypto mailing list
[email protected]
https://lists.mozilla.org/listinfo/dev-tech-crypto

Reply via email to