view test/fact0.c @ 496:5640fb7a270d

more bugs...
author kono
date Thu, 22 Dec 2005 00:20:09 +0900 (2005-12-21)
parents 0c256ea2a97e
children 5313ed059cee
line wrap: on
line source
#include "stdio.h"

main(ac,av)
int ac;
char *av[];
{
    printf("#0006:%d\n",fact(1,1,10 /*atoi(av[1])*/));
    return 0;
}

int
fact(i,j,n) 
/*register*/ int i,j,n;
{
    if (i==n)
	return j;
    return fact(i+1,j*i,n);
}