Computer Science, asked by pr199834, 7 months ago

Explain looping statement in c with syntax ?​

Answers

Answered by Anonymous
4

while loop in C programming language is as follows: do { statements } while (expression); As we saw in a while loop, the body is executed if and only if the condition is true. In some cases, we have to execute a body of the loop at least once even if the condition is false.

Answered by unicorn276
0

Explanation:

while loop in C programming language is as follows: do { statements } while (expression); As we saw in a while loop, the body is executed if and only if the condition is true. In some cases, we have to execute a body of the loop at least once even if the condition is false.

Similar questions