i have
a code like this:
class test
{
public static void main(String a[])
{
try
{ int i=2;
int j=i/0;
}
catch(Exception e)
{
return;
}
}
}
-----
by running above code i seen my program get terminated
and control back to operating system.
i like to know what the return statement do in such
situation. pls help.