Name: Anonymous 2009-10-31 19:49
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?
mov cx, 10
.forloop:
loop .forloop