Computer Science, asked by sandipzalke5, 4 months ago

write the program using function that will find the factorial value of a given number​

Answers

Answered by Anonymous
1

Answer:

here\:is\:your\:answer\red\:mate

Write a C program to calculate the factorial of a given number.

Pictorial Presentation:

Sample Solution:

C Code: #include <stdio.h> void main(){ int i,f=1,num; printf("Input the number : "); scanf("%d",&num); for(i=1;i<=num;i++) f=f*i; printf("The Factorial of %d is: %d\n",num,f); } ...

Flowchart:

C Programming Code Editor:

Explanation:

Thank you ;)

Similar questions