write an c algorithm to find the factorial of a given number
Answers
Answered by
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
Business Studies,
1 month ago
Math,
1 month ago
Math,
1 month ago
Hindi,
3 months ago
English,
3 months ago