Computer Science, asked by mohanbehra1981, 2 months ago

Write the program of DO...LOOP​

Answers

Answered by mitali6060
1

Explanation:

The body of do... while loop is executed once. If the test expression is true, the body of the loop is executed again and the test expression is evaluated. This process goes on until the test expression becomes false. If the test expression is false, the loop ends.

please like and follow

Answered by shristirastogi15
0

Answer:

A do while loop is similar to while loop with one exception that it executes the statements inside the body of do-while before checking the condition. On the other hand in the while loop, first the condition is checked and then the statements in while loop are executed.

mark me as a brain list

Similar questions