goto c 2b 2b

Solutions on MaxInterview for goto c 2b 2b by the best coders in the world

showing results for - "goto c 2b 2b"
Yael
29 Aug 2020
1//The goto statement is used for transferring the control of a program to a given label
2//goto and label must be in a function.
3goto label;
4...
5...
6label: statement;
Clarisse
05 Jun 2019
1Transfer control to a specified label