Consider the following function
int find(int n)
{
if(n<=0) return 1;
return find(n/3) + find(n-2);
}
If the function is called with argument n = 15, then what will be the output of following code?
Enter numerical value using the virtual keypad. Round off where necessary.