C++ do-while loop – Programming, Pseudocode Example, C# Programming Example
C++

C++ do-while loop

Format:

Its functionality is exactly the same as the while loop except that condition in the do-while is evaluated after the execution of statement instead of before, granting at least one execution of statement even if condition is never fulfilled. For example, the following program echoes any number you enter until you enter 0.

 

The do-while loop is usually used when the condition that has to determine its end is determined within the loop statement, like in the previous case, where the user input within the block of intructions is what determines the end of the loop. If you never enter the 0 value in the previous example the loop will never end.

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.