Goto Statement in C

The goto statement in C Programming is useful to alter the flow of a program. When the C compiler reaches the goto statement, then it will jump unconditionally ( both forward and backward ) to the location specified in it (we called it as a label). Unlike the Break and Continue, the goto statement in … Read more