goto statement in C
goto statement in C By using goto statement you can transfer the control of program anywhere. This keyword is not recommended to use in any situation. Syntax goto label; . . . . . . . . label: statement; Flowchart of goto statement in C – Image Source Lets make one program to understand it. #include<stdio.h> …
