Explain looping statement in c with syntax ?
Answers
Answered by
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
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