goto statement
 
 The Goto statement :-       C language supports " goto " statement to branch unconditionally from one point to another in the program.   The goto requires a label in order to identify the place where the branch is to be made. A label  is any valid variable name, and must be followed by a colon. The label is placed just before the statement where the control is to be transferred.     The general forms of goto and label statements are:-                    The " label: " can be anywhere in the program either before or after the " goto label; " statement.   While executing the program,when a statement like "goto begin;" is met, the flow of control will jump to the statement immediately following the label "begin:". A goto breaks the normal sequencial execution of the program. If the "label:" is before the statement "goto label;"   a loop will be formed and some statments will be executed repeatedly. Such a jump is calle...
