09.09.2013, 11:30
You're missing the point. An example:
It re-assigns a value to num, but num will keep the last one after it finishes. So it will keep only the 49.
In other words, the other 48 were pointless.
pawn Код:
new
num
;
for( new j = 0; j < 50; j++ ) num = j;
In other words, the other 48 were pointless.