How to stop the if else loop code in c++?? In Dev C++
Answers
Answered by
1
Answer:
in C++, the break statement terminates the loop when it is encountered.
The syntax of the break statement is: break
Similar questions