Forgot your password?
typodupeerror

Comment Re:Preach it brother (Score 1) 822

There is absolutely nothing wrong with breaking out of for() loop. As a matter of fact the following is a fairly standard way of implementing an infinite loop in C:
for(;;){
/* do something and use break to terminate the loop */
}
Screw that. A true infinite loop doesn't have a break in it. This is the simplest way to implement an infinite loop:

for(;;);

User Journal

Journal Journal: Fark

I like titties.
Titties and beer.

Slashdot Top Deals

The 11 is for people with the pride of a 10 and the pocketbook of an 8. -- R.B. Greenberg [referring to PDPs?]

Working...