the loop executed while the expression is true ________
Answers
Answered by
0
Answer:
Explanation:
The while() loop. The contents of the loop, which as always may be a single statement or a { ... } block, are executed for as long as the controlling expression is true. The while() loop repeats as long as the condition is true (non-zero).
Similar questions