S
Seebs
You have again ignored this completely.
I looked at it a bit, and it didn't seem to say much.
Further, I posted an
explanation of the difference between this
postincrement-where-it-isn't-appropriate issue and you for loop:
,----
| since none of the increments which are supposed to be performed by
| the code quoted above are technically useless, meaning, what I
| called 'overstepping the loop counter' does not occur here.
`----
Because the test is basically while (i < N), i needs to be incremented
until i == N, while in order to test i != 0, no post-decrement down to
(unsigned)-1 needs to be performed. You still claim that both would be
identical while they are clearly not identical and anyone with sufficient
knowledge in C to understand the code at all can be expected to
understand the difference.
I think we've gotten to a point where we need a couple of code fragments
in view.
Could you show us the two tests you're comparing, which you say are not
identical, and which someone else apparently said were identical? Ideally,
a short loop using each to, say, print the numbers from 9 to 0 or something
like that.
-s