The goto statement

C support the goto statement for unconditional branching from one point in the program to another. The syntax for the goto statement is:
goto label;
_______
______
label;
statement-1;
statement-2;

No comments:

Post a Comment