.. include:: Loops: ``do - while`` ===================== ``do - while``: Condition After Body ------------------------------------ .. code-block:: c do do-something while (condition); * Condition is checked *after* body * |longrightarrow| body is executed *at least once*