Se consideră subprogramul alăturat:
int f(int a,int b)
{if(b<1) return -1;
else
if (a&b==0)
return 1+f(a/b,b);
else
return 0;
}
Ce valoare are f(15,2)? Dar f(128,2)?
Ce face return -1?
