goto = {} c++ code example
Example: goto c++
//The goto statement is used for transferring the control of a program to a given label
//goto and label must be in a function.
goto label;
...
...
label: statement;
//The goto statement is used for transferring the control of a program to a given label
//goto and label must be in a function.
goto label;
...
...
label: statement;