...the Loop? Awk While, Do While, For Loop, Break, 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. ...