b) output with justification
#include <iostream.h>
long factorial (long a)
{
if (a > 1)
return (a + factorial (a + 1));
else
return (1);
}
int main o)
{
long num = 3;
cout << num << "! = " << factorial ( num
);
}
Answers
Answered by
11
What
is
this
❓❓❓❓❓❓ ❔❗❗❗❗❗❗✴️
Answered by
2
Answer:
your question is not proper
Explanation:
Similar questions
Math,
3 months ago
Social Sciences,
3 months ago
Computer Science,
6 months ago
Math,
10 months ago
Math,
10 months ago