If my understanding is correct, they do exactly the same thing. Why would anyone use for the ‘for’ variant? Is it just taste?
Edit: I suppose I was also thinking of for (;;).
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
is often used to prevent a compiler warning:
or
usually throws a compiler warning about a conditional expression being constant (at least at the highest warning level).