InterviewSolution
Saved Bookmarks
| 1. |
this statement breaks the sequence of execution of statements by jumping to a particular line specified in the label option a go to statements option b operators option c program option d none of these |
|
Answer» go to statement is the answer A GOTO statement in C programming provides an unconditional jump from the 'goto' to a LABELED statement in the same function. NOTE − Use of goto statement is highly DISCOURAGED in any programming language because it makes difficult to trace the control FLOW of a program, making the program hard to UNDERSTAND and hard to modify. Any program that uses a goto can be rewritten to avoid them. please mark my answers as brainliest |
|