You can use labels :
something like (very simplified)
voif f()
{
goto a;
a:
dosomething();
}
But you should learn to use control flow logic to not have to use goto.
CLICK HERE to find out more related problems solutions.
You can use labels :
something like (very simplified)
voif f()
{
goto a;
a:
dosomething();
}
But you should learn to use control flow logic to not have to use goto.
CLICK HERE to find out more related problems solutions.