I see the different conventions used in many books I had read, where you would create infinite loops with either loop structure such as:
while()
foo();
for(;;)
foo();
But really, what are the differences I should know about? which one is better?
See Question&Answers more detail:os