Computer Science, asked by sindhuganapati12, 3 months ago

write an c algorithm to find the factorial of a given number​

Answers

Answered by Anonymous
3

Answer:

Factorial C program,Algorithm,Flowchart

1) int main()

2) int n,i,fact=1;

3) printf("Enter any number : ");

4)scanf("%d", &n);

5) for(i=1; i<=n; i++)

6)printf("Factorial value of %d = %d",n,fact);

hope it helps

pls mark me as brainliest if u r happy with the answer

Similar questions