Computer Science, asked by khitiyasemysemy, 1 month ago

give syntax of while.... wend Qb64​

Answers

Answered by ashmitamanikandan6
2

Answer:

Syntax. do { statement(s); } while( condition ); ... If the condition is true, the flow of control jumps back up to do, and the statement(s) in the loop executes again. This process repeats until the given condition becomes false.

Explanation:

Similar questions