➢ Jumps in Loops:- ➢ C++ break and continue Statement:- There are two statements (break; and continue ;) built in C++ programming to alter the normal flow of program. Loops are used to perform repetitive task until test expression is false but sometimes it is desirable to skip some statement/s inside loop or terminate the loop immediately with checking test condition. On these type of scenarios, continue; statement and break; statement is used respectively. The break; statement is also used to terminate switch statement. 1) break Statement :- The break; statement terminates the loop(for, while and do..while loop) and switch statement immediately when it appears . Syntax of break :- break; ...