give syntax of while.... wend Qb64
Answers
Answered by
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