Computer Science, asked by pg08gupta, 18 days ago

What is the syntax of WHILE LOOP INQBASIC? ​

Answers

Answered by Ayush4101
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