Computer Science, asked by nilithakur28, 7 hours ago

Write to program to find factorial of an given number by using recursion.

Answers

Answered by Anonymous
0

What are some common error in latex?

ㅤㅤㅤㅤㅤㅤㅤ  \huge\mathfrak{answer}

Errors

Alignment.

Missing Math mode characters.

References.Labeling.

Float specifiers.

Undefined control sequences.

File not found

Missing number/illegal units of measure

Answered by pihujyoti473
2

Explanation:

#include<stdio.h>

long factorial(int n)

{

if (n == 0)

return 1;

else.

return(n * factorial(n-1));

}

Similar questions