Q:

WHAT IS THE USE OF “GOTO” STATEMENT?

belongs to collection: C INTERVIEW QUESTIONS AND ANSWERS

0

WHAT IS THE USE OF “GOTO” STATEMENT?

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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;
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C INTERVIEW QUESTIONS AND ANSWERS

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
WHAT VALUE IS ASSIGNED TO THE BELOW VARIABLES?... >>
<< WHY IS DEFAULT STATEMENT USED IN SWITCH CASE IN C?...