Answers for "c program to find factorial of a number using while loop"

C
2

factorial c program using for loop

#include<stdio.h>
int main(){
  int i,f=1,num;
 
  printf("Enter a number: ");
  scanf("%d",&num);
 
  for(i=1;i<=num;i++)
      f=f*i;
 
  printf("Factorial of %d is: %d",num,f);
  return 0;
}
Posted by: Guest on January-10-2021

Code answers related to "c program to find factorial of a number using while loop"

Code answers related to "C"

Browse Popular Code Answers by Language