The CONTINUE statement is a no operation statement. CONTINUE indicates that no executable instruction is present. Format CONTINUE
first the condition will be checked after the count is initialized to 1, at first iteration itself the condition will be false,so print statement won’t get executed, but in do while first body will be executed, so it executes print statement. ...