##Jumping Statements ##
C language provides us multiple statements through which we can transfer the control anywhere in the program. There are basically 3 Jumping statements: 1. break jumping statements. 2. continue jumping statements. 3. Goto jumping statements. 1. Break jumping statements. · By using this jumping statement, we can terminate the further execution of the program and transfer the control to the end of any immediate loop. · To do all this we have to specify a break jumping statements whenever we want to terminate from the loop. Syntax: break; NOTE : This jumping statements always used with the control structure like switch case, whi...