e. What is LABEL GOTO statement?
Answers
Answered by
1
The goto statement is a jump statement which is sometimes also referred to as unconditional jump statement. The goto statement can be used to jump from anywhere to anywhere within a function. Syntax: ... The 'label:' can also appear before the 'goto label;' statement in the above syntax.
PLS MARK ME AS BRAINLIST AND FOLLOW ME PLS....
Answered by
1
Answer:
The C++ goto statement is also known as jump statement. It is used to transfer control to the other part of the program. It unconditionally jumps to the specified label. It can be used to transfer control from deeply nested loop or switch case label.
Explanation:
PLEASE MARK ME AS BRAINLIEST
Similar questions