How can I use goto function across different functions .For ex ,
main()
{
....
REACH:
......
}
void function()
{
goto REACH ;
}
How to implement such usage ?
See Question&Answers more detail:os