home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tyc / list1413.c < prev    next >
C/C++ Source or Header  |  1993-10-16  |  302b  |  18 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.  main()
  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.