Blame view

lab2/factorial.c 210 Bytes
e1249c637   kmazouzi   add debug lab2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  #include <stdio.h>
  
  int main()
  {
      int i, num, j;
      printf ("Enter the number: ");
      scanf ("%d", &num );
  
      for (i=1; i<num; i++)
          j=j*i;    
  
      printf("The factorial of %d is %d
  ",num,j);
  }