hi .
maybe it is funny but I realy cant undrestand why the program go to loop with this instruction
for(i=0;i=5;++i)

when it is
for(i=o;i<5;++i)
program checks : if i<5 then it does the loop instructions and then ++i
else it doesnt .

when it is
for(i=0;i=!5;++i)
while i isnt 5 the program does the loop instructions and each time ++i

I think when it is "for(i=0;i=5;++i)" PC shoulnt do the loop instruction
(cause i is 0 and i!=5) , but it does .

can u plz explain for me why the program does that and goes to loop ?

TNX