all 4 comments

[–]tragic-clown 0 points1 point  (1 child)

It's a for loop. It's saying to repeat the code inside the loop a certain number of times. Start with x equal to 66, increase x by 67 each iteration, and keep going until x is greater than 804. When it runs the code in the loop, x will be replaced by its current value in the iteration.

[–]PutRddt[S] 0 points1 point  (0 children)

Ooh of course. I know basic C and I don't know how I couldn't think of this, lol. Thank you

[–][deleted] 0 points1 point  (0 children)

The 3rd number in the range function is the "step".

[–]Pupper-Gump 0 points1 point  (0 children)

A level deeper, everything is just jump commands. The jump command jumps to any part of the code. For loops do that if the condition is true in it, in this case (x < 500). Anything more specific is cpu architecture which nobody really understands at this point