OpenCores
URL https://opencores.org/ocsvn/m1_core/m1_core/trunk

Subversion Repositories m1_core

[/] [m1_core/] [trunk/] [tests/] [fact.c] - Blame information for rev 57

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 42 fafa1971
// Factorial
2
 
3
int main() {
4
  int num = 5;
5
  int fact = fact_f(num);
6
  return 0;
7
}
8
 
9
int fact_f(int n) {
10
  if(n==1) return 1;
11
  else return n*fact_f(n-1);
12
}
13
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.