Computer Science, asked by AniOO2504, 10 months ago

How to terminate a loop while execution in turbo c++?

Answers

Answered by rishu0246
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