home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day14 / puts.c < prev    next >
C/C++ Source or Header  |  2002-05-07  |  320b  |  21 lines

  1. /* Demonstrates puts(). */
  2.  
  3. #include <stdio.h>
  4.  
  5. /* Declare and initialize an array of pointers. */
  6.  
  7. char *messages[5] = { "This", "is", "a", "short", "message." };
  8.  
  9. int main( void )
  10. {
  11.     int x;
  12.  
  13.     for (x=0; x<5; x++)
  14.         puts(messages[x]);
  15.  
  16.     puts("And this is the end!");
  17.  
  18.     return 0;
  19. }
  20.  
  21.