do-while Loop
This lesson explains how do-while loop is implemented and how it is different from the while loop.
We'll cover the following...
In a previous lesson, we saw the steps in which the while
loop is executed:
preparation
condition check
actual work
iteration
condition check
actual
...