[Solved] What does an “extra” semicolon means? [duplicate]
A for loop is often written int i; for (i = 0; i < 6; i++) { … } Before the first semicolon, there is code that is run once, before the loop starts. By omitting this, you just have nothing happen before the loop starts. Between the semicolons, there is the condition that is … Read more