can able to do programme control transfer from one method to another different method like goto and label statement.
now i want to show something like this
public class A()
{
public void B()
{
int a,b,c;
c=a+b;
jump here:
c=a*b;
}
public voidC()
{
int x,y,z;
z=x-y;
goto jump here;
}
}
Nitin SontakkePosted May 22, 2018, 1:34 AM
Chethan ChinmayPosted May 22, 2018, 12:53 AM
Nitin SontakkePosted May 21, 2018, 8:49 AM