A method which calls itself from its body is known as recursive method.
Eg:
public int fact( int n)
{
if(n==1)
return 1;
else
return (n * fact(n-1));
}
A method which calls itself from its body is known as recursive method.
Eg:
public int fact( int n)
{
if(n==1)
return 1;
else
return (n * fact(n-1));
}