almost the final version

This commit is contained in:
aarne
2004-09-26 15:44:08 +00:00
parent e1617bbb8e
commit 693cbcb2f3
8 changed files with 364 additions and 192 deletions

View File

@@ -14,7 +14,7 @@ int main () {
int n ;
n = 1 ;
{
while (n < 11) printf(int,fact(n)) ; n = n+1 ;
while (n < 11) printf("%d",fact(n)) ; n = n+1 ;
}
return ;
} ;