almost the final version

This commit is contained in:
aarne
2004-09-26 15:44:08 +00:00
parent a06dcaab30
commit 1b5c20dced
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 ;
} ;