which of the following statements would make the controller go back to label: Start:
Answers
Answered by
2
Answer:
goto start;
Explanation:
To alter the control of flow in a program goto statement is used. The format of goto statement is as follows:
goto Label;
Here label can be any valued variable.
Similar questions