is there a goto 10 function in c language just like the basic language?

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.

Leave a Comment

Your email address will not be published.

Scroll to Top