Neeraj Mishra

A crazy computer and programming lover. He spend most of his time in programming, blogging and helping other programming geeks.

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> …

goto statement in C Read More »