Computer Science, asked by Ayushsharma1047, 9 months ago

Loops will execute the body of loop even when condition controlling the loop is initially false.

Answers

Answered by Munindra1
1

Answer:No

Explanation:Well I didn't properly understand what you are trying to ask but, No, the compiler will not go inside the body of the loop is the condition is false, it directly go to the next loop or command

Answered by Anonymous
0

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