home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / ctutor2.zip / ANSWERS / CH05_2.C < prev    next >
Text File  |  1989-11-10  |  318b  |  31 lines

  1. writename()
  2. {
  3.    printf("John Q. Doe\n");
  4. }
  5.  
  6.  
  7. main()
  8. {
  9. int index;
  10.  
  11.    for(index = 0;index < 10; index = index + 1)
  12.       writename();
  13. }
  14.  
  15.  
  16.  
  17. /* Result of execution
  18.  
  19. John Q. Doe
  20. John Q. Doe
  21. John Q. Doe
  22. John Q. Doe
  23. John Q. Doe
  24. John Q. Doe
  25. John Q. Doe
  26. John Q. Doe
  27. John Q. Doe
  28. John Q. Doe
  29.  
  30. */
  31.