8 ms·
This is equivalent to while (1) { calc(x++); } which is an infinite loop, since the expression x <= max is always true
by mnaydin 4y ago
This is equivalent to
while (1) {
calc(x++);
}
which is an infinite loop, since the expression x <= max is always true
- NoZebra120vClip 4y agoHeh! Good catch! That is what I get for not testing. After UINT_MAX, x wraps around to 0.