goto Statement
goto Statement
By using this jumping statements we can transfer the control from current location to anywhere in the program.
To do all this we have to specify a label with goto and the control will transfer to the location where the label is specified.
Syntax:
<label>:
statement;
goto <label>;
Note :
It is good programming style to use the break, continue and return instead of goto. However, the break may execute from single loop and goto executes from more deeper loops.