Computer Science, asked by pkash6993, 3 days ago

which of the following statements would make the controller go back to label: Start:

Answers

Answered by maya3227
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