12-09-2007, 01:29 PM
What is the preferred implementation of an infinite loop?
or
or
something else?
Thanks in advance.
Jonathan
Code:
for ( ; ; ) ...
or
Code:
while (1 == 1) ...
or
something else?
Thanks in advance.
Jonathan