I was following a tutorial for how to make an insertion sort and came across this line of code:
for(; j >= 0 && tempVar < insertionArray[j]; j--)
My question is, what does the single semicolon mean after the first bracket?
I know that a double semicolon in a for loop defines an infinite loop,
for(;;)
but what does a single one mean?