You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#goto
goto-statement is jump to label.
can jump to same or outside scope in function.
cannot jump to other function.
cannot jump to inside scope.
##goto statement
goto identifier;
##label
identifier:
##example
int i = 0;
label:
print(i); // 0 to 9
i++;
if (i < 10)
goto label;