921e5a0eb4
From-SVN: r14840
8 lines
91 B
C
8 lines
91 B
C
unsigned
|
|
rec (a, b)
|
|
unsigned a;
|
|
unsigned b;
|
|
{
|
|
return a * rec (a - 1, b + 1);
|
|
}
|