Hive the significance of GOTO Statements
Answers
Answered by
0
Answer:
A goto statement in C programming provides an unconditional jump from the 'goto' to a labeled statement in the same function.
Answered by
1
Answer:
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.
Similar questions