There is no initialization statement, therefore nothing happens in the initialization step before starting the loop.
There is no stop condition, so the loop continues until a break or return is encountered, or an exception is thrown (or a longjmp, or a goto outside the loop, or... ).
There is no update statement, so nothing is done between each iteration of the loop.
A faster and easier way to get an answer to this question would be to try it and find out yourself.