Computer Science, asked by manjubajpai1881, 3 months ago

This loop is used while the expression in the condition is true name the loop

Answers

Answered by yourfrnd009
0

Answer:

fcssxcfffffgggggvvvvhhhhgg

Answered by Anonymous
1

while loop is executed once before the condition is checked. Its syntax is: do { // body of loop; } while (condition); ... If the condition evaluates to true , the body of the loop inside the do statement is executed again.

Similar questions