Syntax:
goto label;
Control is unconditionally transferred to the operator with the label "label". It is used to exit from the nested control operators. The scope of the label is limited within the current function.
Example:
goto next;