The do while statement - C++
Unlike for and while loops, which tests the loop condition atthe top of the loop, the do-while loop checks the condition at the bottom of the loop, which means that a do-loop always executes at last once.
Views: 586 | | by Isac
View this tutorial