What is the output of the following problem ?

		
					

Loading

โœช Choose the correct option.

What is the output of the following problem ?


#include
int main()
{
int j,ans;
j = 4;
ans = count(4);
printf("%d
",ans);
return 0;
}
int count(int i)
{
if ( i < 0)
return(i);
else
return( count(i-2) + count(i-1));
}

A. -18
B. 18
C. 8
D. Compilation Error