home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
games
/
volume11
/
jotto
/
part01
/
answer.c
next >
Wrap
C/C++ Source or Header
|
1990-12-11
|
106b
|
11 lines
/*
* answer
*/
answer(w, n)
char *w;
int n;
{
printf(" %s has %d letter%s\n", w, n, n==1? "": "s");
}