Loops: do - while

do - while: Condition After Body

do
    do-something
while (condition);
  • Condition is checked after body

  • ⟶ body is executed at least once