Write an algorithm to find the factorial of a number
Answers
Answered by
2
Factorial C program,Algorithm,Flowchart
int main()
int n,i,fact=1;
printf("Enter any number : ");
scanf("%d", &n);
for(i=1; i<=n; i++)
printf("Factorial value of %d = %d",n,fact);
Similar questions