For loop question Is there a way to start a for loop at +20 on first itteration?

for (i; i <=42 ; i = i + x) {        // First interation of loop i starts at 22.

x is undefined.

You can start the for loop with whatever value you like.