0.7 Define EXIT DO statement, write the syntax also.
Answers
Answered by
0
Answer:
<html>css is the form you for stan
Answered by
11
EXIT DO statement
An Exit Do Statement is used when we want to exit the Do Loops based on certain criteria. It can be used within both Do… While and Do... Until Loops. When Exit Do is executed, the control jumps to the next statement immediately after the Do Loop.
syntax
The syntax of the do statement is: do statement while (expression); The statement is executed repeatedly as long as the value of expression remains non-zero. The expression is evaluated after each iteration, so the loop will execute statement at least once.
Similar questions