6 ms·
Yeah, it would have to be something like this if you wanted to avoid the signed integer overflow at the end of the loop: assert(i <= j); for (;;) { d
by trealira 1y ago
Yeah, it would have to be something like this if you wanted to avoid the signed integer overflow at the end of the loop:
assert(i <= j);
for (;;) {
do_something_with(i);
if (i == j)
break;
i++;
}