for(int i = 0; i < 10; i++){}
Does is matter if its a postfix or prefix operator in the action statement? If so, when do you use postfix and when do you use prefix?
++i
the variable is incremented first and then used and the opposite case with postfix.