Goto Statement : Unconditional Jump Statement in C Programming
Goto Statement
goto label; ------- ------- label :
Whenever goto keyword encountered then it causes the program to continue on the line , so long as it is in the scope .
Types of Goto :
- Forward
- Backward
Note :