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

  1. /*Program 4_2a - Sort IRS data
  2.    by Stephen R. Davis, 1987
  3.  
  4.   Accept several different types of data on individuals in random
  5.   order and sort it.  This initial version defines the structure
  6.   we will use to store the data and provides a 'create()' to generate
  7.   the entries and an 'output()' function to output them again.
  8. */
  9.  
  10. #include <stdio.h>
  11. #include <ctype.h>
  12. #include <alloc.h>
  13.  
  14. /*prototype declarations --*/
  15. struct IRSdata *create (void);
  16. void getfield (char *, char *, unsigned);
  17. void output (struct IRSdata *);
  18. int main (void);
  19.  
  20. /*structure declaration for IRS data*/
  21. struct IRSdata{
  22.                char lastname [11];
  23.                char firstname [11];
  24.                char sex;
  25.                struct {
  26.                        char street [16];
  27.                        char city [11];
  28.                        char state [3];
  29.                       } address;
  30.                char ssnum [10];
  31.                int taxrate;
  32.               };
  33. char buffer [256];
  34.  
  35. /*Create - allocate an IRSdata entry and fill in the data from 'stdin'*/
  36. struct IRSdata * create ()
  37. {
  38.     char answer [2];
  39.     struct IRSdata *ptr;
  40.  
  41.     getfield ("Another entry? ", answer, 1);
  42.     if (tolower (answer [0]) == 'n')
  43.          return NULL;
  44.  
  45.     if (ptr = (struct IRSdata *)malloc (sizeof(struct IRSdata))) {
  46.          getfield ("Enter last name:    ", ptr -> lastname, 10);
  47.          getfield ("      first name:   ", ptr -> firstname, 10);
  48.          getfield ("      street addr:  ", ptr -> address.street, 15);
  49.          getfield ("      city address: ", ptr -> address.city, 10);
  50.          getfield ("      state (2 ltr):", ptr -> address.state, 2);
  51.          getfield ("      soc sec #:    ", ptr -> ssnum, 9);
  52.          printf   ("      tax bracket:  ");
  53.  
  54.          gets (buffer);
  55.          sscanf (buffer, "%d", &(ptr -> taxrate));
  56.          printf ("\n");
  57.     } else {
  58.          printf ("Sorry.  No more room for data.\n");
  59.     }
  60.  
  61.     return (ptr);
  62. }
  63.  
  64. /*GetField - pose a question, then get an answer.  Save up to
  65.              'size' characters*/
  66. void getfield (question, answer, size)
  67.     char *question,*answer;
  68.     unsigned size;
  69. {
  70.     unsigned i;
  71.  
  72.     printf (question);
  73.     while (!gets (buffer));
  74.     for (i = 0; size; size--)
  75.          *answer++ = buffer [i++];
  76.     *answer = '\0';
  77. }
  78.  
  79. /*Output - output a subset of IRSdata structure to 'stdout'*/
  80. void output (ptr)
  81.     struct IRSdata *ptr;
  82. {
  83.     if (ptr)
  84.          printf ("%s %s, %s\n", ptr -> firstname,
  85.                     ptr -> lastname, ptr -> ssnum);
  86. }
  87.  
  88. /*Main - invoke create() and output() to test them.*/
  89. main ()
  90. {
  91.     output (create ());
  92. }
  93.