WHAT IS THE USE OF “GOTO” STATEMENT?
goto statement is used to transfer the normal flow of a program to the specified label in the program. Below is the syntax for goto statement in C.
{…….goto label;…….…….LABEL:statements;}
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
goto statement is used to transfer the normal flow of a program to the specified label in the program. Below is the syntax for goto statement in C.
{
need an explanation for this answer? contact us directly to get an explanation for this answer…….
goto label;
…….
…….
LABEL:
statements;
}