How to terminate a loop while execution in turbo c++?
Answers
Answered by
1
Answer:
To stop, you have to break the endless loop, which can be done by pressing Ctrl+C. But that isn't the way you want your programs to work. Instead, an exit condition must be defined for the loop, which is where the break keyword comes into play.
Explanation:
please mark as brainliest
Similar questions