The jump statement is similar to the goto_statement and has the the following syntax:
jump identifier ;
Here the identifier is a label defined in a label_statement, but in this case the label_statement must reside in the main…endmain block. However the jump_statement can be inside any other function_declaration. A jump_statement results in the stack being cleared so that all function return values are lost.