Is there a difference between a do while loop and a while loop or are they different ways of accomplishing the same thing.
Do While or While
Collapse
X
-
Tags: None
-
The next question is often: which should I use to do X? My rule of thumb is try the while loop first. Situations where the do-while loop is a better choice are not as common.Comment
-
While --> Each time it checks the condition before executing the block of code.
do..While -----> Executes the block of code and checks the condition.
Syntax
while(expression)
{
//Block of code
}
............... ....
do
{
//Block of code
}
while(expression)Comment
-
Comment