Y
Hacker News
new
|
ask
|
show
|
jobs
by
dzaima
31 days ago
C does allow unconditional infinite loops (e.g. "while (1) { }" isn't UB) but still is UB if the controlling expression isn't constant (e.g. "while (two < 10) { }" is UB if two is a variable less than 10)