|
|
|
|
|
by geocar
3815 days ago
|
|
Yes. You're likely to run into this construct often in C. Lots of people do it because stupid C compilers produce better code for `for(;;)` than they do for `while(1)` and stupid C compilers used to be very common. It's also one less character spent: A rare win/win. |
|