write the syntax of the WHILE statement with an example
Answers
Answered by
2
Explanation:
Example 1: while loop
When i is 1, the test expression i <= 5 is true. ... Now, i is 2, the test expression i <= 5 is again true. The body of the while loop is executed again.
Similar questions