home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Overload
/
ShartewareOverload.cdr
/
progm
/
ctutor2.zip
/
ANSWERS
/
CH05_2.C
< prev
next >
Wrap
Text File
|
1989-11-10
|
318b
|
31 lines
writename()
{
printf("John Q. Doe\n");
}
main()
{
int index;
for(index = 0;index < 10; index = index + 1)
writename();
}
/* Result of execution
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
*/