home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c072 / 1.ddi / PRG3_2B.C < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-19  |  1.5 KB  |  55 lines

  1. /*Program 3_2b - Print the names of the month
  2.     by Stephen R. Davis, 1987
  3.  
  4.   The following program demonstrates in a simplistic fashion
  5.   the concept of arrays of pointers.  Almost unknown in other
  6.   languages, this concept can save much code both in terms of size
  7.   and speed.  Compare this program to the "Pascal-like" Program 3_2a
  8.   which does the same thing. */
  9.  
  10. #include <stdio.h>
  11.  
  12. /*prototype definitions --*/
  13. int main (void);
  14. unsigned putmonths (unsigned);
  15.  
  16. /*an array of pointers to the names of the months*/
  17. char *months[] = {"Bye bye\n\n",
  18.                   "January\n\n",
  19.                   "February\n\n",
  20.                   "March\n\n",
  21.                   "April\n\n",
  22.                   "May\n\n",
  23.                   "June\n\n",
  24.                   "July\n\n",
  25.                   "August\n\n",
  26.                   "September\n\n",
  27.                   "October\n\n",
  28.                   "November\n\n",
  29.                   "December\n\n"};
  30.  
  31. /*Main - input a number and output the corresponding name of
  32.      the month*/
  33. main()
  34. {
  35.     unsigned putmonths();
  36.     unsigned innum;
  37.  
  38.     do {
  39.          printf ("Enter another month: ");
  40.          scanf ("%d",&innum);
  41.        } while (putmonths(innum));
  42. }
  43.  
  44. /*Putmonths - given a number, print the corresponding month.  Return
  45.               the number, unless it is out of range, in which case,
  46.               return a 0*/
  47. unsigned putmonths(month)
  48.     unsigned month;
  49. {
  50.     if (month > 12)
  51.          month = 0;
  52.     printf(months[month]);
  53.     return(month);
  54. }
  55.