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