What does the following function produce for count (20) ?
int count (int arg)
(
if (arg<1)
return 0 ;
else if (arg 28 )
return (1+count(arg−2));
else
return (1+count(arg−1))