2
0
mirror of https://github.com/boostorg/spirit.git synced 2026-01-19 16:52:10 +00:00
Files
Joel de Guzman 07ef3ead0e moving mini_c samples
[SVN r69673]
2011-03-08 02:33:41 +00:00

16 lines
163 B
Plaintext

/* The factorial */
int factorial(n)
{
if (n <= 0)
return 1;
else
return n * factorial(n-1);
}
int main(n)
{
return factorial(n);
}