(Choose 1 answer)
Consider the following function:
void fun(int n)
{if (n<0)
{System.out.println("-");
fun(-n);
}
else if(n<15)
System.out.println(n);
else
{fun(n/15);
System.out.println(n%15);
}
} What values of n are directly handled by the stopping (base) case?
A. n<0
3.n<15
C. n >= 0 && n<15
D. n>=15
Exit 3