It's certainly not faster in any sane compiler. They will both be compiled into unconditional jumps. The for version is easier to type (as Neil said) and will be clear if you understand for loop syntax.
If you're curious, here is what gcc 4.4.1 gives me for x86. Both use the x86 JMP instruction.
void while_infinite()
{
while(1)
{
puts("while");
}
}
void for_infinite()
{
for(;;)
{
puts("for");
}
}
compiles to (in part):
.LC0:
.string "while"
.text
.globl while_infinite
.type while_infinite, @function
while_infinite:
pushl %ebp
movl %esp, %ebp
subl $24, %esp
.L2:
movl $.LC0, (%esp)
call puts
jmp .L2
.size while_infinite, .-while_infinite
.section .rodata
.LC1:
.string "for"
.text
.globl for_infinite
.type for_infinite, @function
for_infinite:
pushl %ebp
movl %esp, %ebp
subl $24, %esp
.L5:
movl $.LC1, (%esp)
call puts
jmp .L5
.size for_infinite, .-for_infinite
TRUE??? – AndreyT Apr 9 '10 at 22:07TRUEhave to do with C? The standard macro for true boolen result in C99 is stilltrue. Where did theTRUEcome from? – AndreyT Apr 9 '10 at 22:16for(;;)to be the clearer construct.while (true)implies you're testingtrueevery loop; obviously I know this is optimized away, but it's unnecessary code. – meagar Apr 9 '10 at 22:18#define EVER ;;has been used in IOCCC though.. :) – Roger Pate Apr 9 '10 at 22:27