Computer Science, asked by Zaphyre, 1 year ago

what is the use of goto statement?

Answers

Answered by Aishwarya0739
3
GoTo (goto, GOTO, GO TO or other case combinations, depending on the programming language) is a statement found in many computer programming languages. It performs a one-way transfer of control to another line of code; in contrast a function call normally returns control.
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
Similar questions