The goto_statement has the following syntax:
goto identifier ;
Where indentifier is the name of a label defined in a label_statement . This causes the program execution to jump to the specified label which must reside within the same function_declaration or with the main…endmain block if that is where the goto was called from.