goto statement in C
goto statement in C
A goto statement in C is a jump statement that provides an unconditional jump from the ‘goto’ to a labeled statement in the same function.
The goto statement is used to repeat some part of the code for a particular condition. It is also used to break the multiple loops which cannot be done by using a single break statement.