Question:C program to find the factorial of a given number 

Answer 
#include<stdio.h>
int main(){
  int i=1,f=1,num;

  printf("Enter a number: ");
  scanf("%d",&num);

  while(i<=num){
      f=f*i;
      i++;
  }

  printf("Factorial of %d is: %d",num,f);
  return 0;
}
Sample output: Enter a number: 5 Factorial of 5 is: 120 

+ ExplanationNot Moderated
+ Report
Total Preview: 537
C program to find the factorial of a given number
Copyright © 2024. Powered by Intellect Software Ltd