home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day02 / ex02-02.c next >
C/C++ Source or Header  |  2002-04-07  |  378b  |  25 lines

  1. /* ex02-02.c */
  2. #include <stdio.h>
  3.  
  4. void display_line(void);
  5.  
  6. int main(void)
  7. {
  8.      display_line();
  9.      printf("\n Teach Yourself C In 21 Days!\n");
  10.      display_line();
  11.  
  12.      return 0;
  13. }
  14.  
  15. /* print asterisk line */
  16. void display_line(void)
  17. {
  18.     int counter;
  19.  
  20.     for( counter = 0; counter < 30; counter++ )
  21.         printf("*" );
  22. }
  23. /* end of program */
  24.  
  25.