What is the syntax of WHILE LOOP INQBASIC?
Answers
Answered by
1
Answer:
Syntax of do... 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.
Similar questions