If i have a loop (any loop)..lets say a for loop for now:
for(int x = 0; x < 100; x++)
if, within an iteration of the loop, i say:
x=50;
Will the next iteration of the loop jump to counter 50? Or does any change to the value of x within the loop not affect the loop counter?