Jump Statements :

Jumping statements are used to transfer the program‟s control from one location to another, these are set of keywords which are responsible to transfer program‟s control within the same block or from one function to another. 


There are four jumping statements in C language: 

goto statement  

return statement  

break statement  

continue statement 

goto statement : goto statement doesnot require any condition. This statement passes control anywhere in the program i.e, control is transferred to another part of the program without testing any condition .

Break Statement : Break is a keyword. The break statement terminates the loop (for, while and do...while loop) immediately when it is encountered. The break statement is used/ associated with decision making statement such as if ,if-else. 

Continue Statement : Continue is keyword exactly opposite to break. The continue statement is used for continuing next iteration of loop statements. When it occurs in the loop it does not terminate, but it skips some statements inside the loop / the statements after this statement. . The continue statement is used/ associated with decision making statement such as if ,if-else