At which value do while loop terminates
Answers
Answered by
3
Answer:
For example, the Pascal language has a repeat until loop, which continues to run until the control expression is true (and then terminates) — whereas a “while” loop runs while the control expression is true (and terminates once the expression becomes false).
Similar questions