for (initializer; condition; iterator)
body
initializer - set some initial state
condition - the condition of the loop exit
iterator - an action that will happen every time at the end of the step cycle
these comrades are not mandatory, in your case, there is no including the termination condition of the cycle, so this cycle will last indefinitely
more details here well Google better English =)
body
initializer - set some initial state
condition - the condition of the loop exit
iterator - an action that will happen every time at the end of the step cycle
these comrades are not mandatory, in your case, there is no including the termination condition of the cycle, so this cycle will last indefinitely
more details here well Google better English =)