what is goto statement
Answers
Answered by
14
Answer:
1.goto is a jumping statement in c language, which transfer the program's control from one statement to another statement (where label is defined).
2.goto can transfer the program's within the same block and there must a label, where you want to transfer program's control.
Answered by
5
- 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: ... Here label is a user-defined identifier which indicates the target statement.
Similar questions