view test/fact0.c @ 283:230a3b98b843 mips-done

MIPS jump work.
author kono
date Mon, 24 May 2004 13:21:22 +0900
parents 096559f07a70
children 0c256ea2a97e
line wrap: on
line source

#include "stdio.h"

main(ac,av)
int ac;
char *av[];
{
    printf("%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);
}