aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/recursion.c
blob: 3c16e33390e3792bb0c8cf3f83acba85f08a7f5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
int fact(int n)
{
	if(n <= 1) {
		return 1;
	} else {
		int x = fact(n-1);
		return x * n;
	}
}

int main() {
	return fact(5);
}