Hacker News new | ask | show | jobs
by mnaydin 1208 days ago
This is equivalent to

  while (1) {
    calc(x++);
  }
which is an infinite loop, since the expression x <= max is always true
1 comments

Heh! Good catch! That is what I get for not testing. After UINT_MAX, x wraps around to 0.