Computer Science, asked by TasneemG54431, 10 months ago

What are loop control structures? Explain for loop, while loop and do-while loop with their syntax

Answers

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