Comments
Ryan wrote:
int i;
for (i = 0; -i < 6; i--) {
printf(".");
}
Sean wrote:
Changing the loop condition to i ^= 6; is another solution.
Ryan wrote:
Ah-ha, a tricky one:
int i;
for (i = 0; i ^= 6; i--) {
printf(".");
}
Ryan wrote:
Ah, Sean beat me to it. :(
Martin DeMello wrote:
for (i = 0; i + 6; i--)
will stop when i + 6 = 0.
John Tromp wrote:
The value in variableidecrements toINT_MINafter|INT_MIN| + 1iterations.
No; i decrements to INT_MIN
after |INT_MIN| iterations. For example,
if i were a signed 1-bit integer,
making INT_MIN equal to -1,
than i becomes -1 upon
executing --i after the first iteration.
Of course, you're correct that |INT_MIN| + 1 dots are
output, due to the extra (and final) iteration starting with i
= INT_MIN.
Susam Pal wrote:
John, You are absolutely right. Thank you for taking a close look at this post and reporting the off-by-one error in my explanation. I have updated the post now to correct it.
Ryan wrote: