summaryrefslogtreecommitdiff
path: root/testapp/c_cpp_files/fact.c
blob: e3665f5e95d0feb6e375b344dfc265c21052c902 (plain)
1
2
3
4
5
6
7
8
9
10
int factorial(int a)
{
  int i,fact=1;
  for(i=1;i<=a;a--)
  {
    fact=fact*a;
  }
  return fact;

}