✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Яким буде результат виклику функції:
cout << f(5) << endl;
Функція:
int f(int n)
{
if (n==0)
return 1;
else
return n*(n-1) * f(n-2);
}