for(int i = 0; i != 10; i++)
for(int i = 0; i < 10; i++)
for(int i = 0; i != 10; ++i)
for(int i = 0; i < 10; ++i)
From the options above, number 3's the best, isn't it?
Name:
Anonymous2009-11-01 12:37
>>17
These are the sorts of things the compiler is really good at figuring out on its on. They all amount to the same; just pick one and let the compiler do its job.