
Using goto Statement
goto statement is used to jump on a particular location in a program defined by label. Label is a name given to a location.
Label is defined by a <locationName> followed by a colon.
goto is use with goto <labelName>;
syntax of label & goto
statment 1;
label:...