Write the syntax of the while statement with an example.
Answers
Answered by
0
Answer:
The syntax is: do { statements } while(condition); Here's what it does. First, the statements are executed, then the condition is tested; if it is true , then the entire loop is executed again.
Similar questions