ab_tanjir

With Function Factorial

Sep 27th, 2019
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.29 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(){
  4.   int number;
  5.  
  6.   printf("Enter a number");
  7.   scanf("%d", &number);
  8.  
  9.   printf("%d", factorial(number));
  10.  
  11.   return 0;
  12. }
  13.  
  14. int factorial(int n){
  15.   int c;
  16.   long result = 1;
  17.  
  18.   for (c = 1; c <= n; c++){
  19.     result = result * c;
  20.   }
  21.   return result;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment