The statement, when used inside the body of a loop, causes termination of the loop without terminating the program is _______?
The statement, when used inside the body of a loop, causes termination of the loop without terminating the program is _______?
Explanation
The break statement, when used inside a loop, immediately exits the loop and transfers control to the statement following the loop.
It does not terminate the entire program, only the current loop.