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

Top Ten Things Overheard At The ANSI C Draft Committee Meetings: (3) Ha, ha, I can't believe they're actually going to adopt this sucker.

Working...