home *** CD-ROM | disk | FTP | other *** search
- /*Program 4_2a - Sort IRS data
- by Stephen R. Davis, 1987
-
- Accept several different types of data on individuals in random
- order and sort it. This initial version defines the structure
- we will use to store the data and provides a 'create()' to generate
- the entries and an 'output()' function to output them again.
- */
-
- #include <stdio.h>
- #include <ctype.h>
- #include <alloc.h>
-
- /*prototype declarations --*/
- struct IRSdata *create (void);
- void getfield (char *, char *, unsigned);
- void output (struct IRSdata *);
- int main (void);
-
- /*structure declaration for IRS data*/
- struct IRSdata{
- char lastname [11];
- char firstname [11];
- char sex;
- struct {
- char street [16];
- char city [11];
- char state [3];
- } address;
- char ssnum [10];
- int taxrate;
- };
- char buffer [256];
-
- /*Create - allocate an IRSdata entry and fill in the data from 'stdin'*/
- struct IRSdata * create ()
- {
- char answer [2];
- struct IRSdata *ptr;
-
- getfield ("Another entry? ", answer, 1);
- if (tolower (answer [0]) == 'n')
- return NULL;
-
- if (ptr = (struct IRSdata *)malloc (sizeof(struct IRSdata))) {
- getfield ("Enter last name: ", ptr -> lastname, 10);
- getfield (" first name: ", ptr -> firstname, 10);
- getfield (" street addr: ", ptr -> address.street, 15);
- getfield (" city address: ", ptr -> address.city, 10);
- getfield (" state (2 ltr):", ptr -> address.state, 2);
- getfield (" soc sec #: ", ptr -> ssnum, 9);
- printf (" tax bracket: ");
-
- gets (buffer);
- sscanf (buffer, "%d", &(ptr -> taxrate));
- printf ("\n");
- } else {
- printf ("Sorry. No more room for data.\n");
- }
-
- return (ptr);
- }
-
- /*GetField - pose a question, then get an answer. Save up to
- 'size' characters*/
- void getfield (question, answer, size)
- char *question,*answer;
- unsigned size;
- {
- unsigned i;
-
- printf (question);
- while (!gets (buffer));
- for (i = 0; size; size--)
- *answer++ = buffer [i++];
- *answer = '\0';
- }
-
- /*Output - output a subset of IRSdata structure to 'stdout'*/
- void output (ptr)
- struct IRSdata *ptr;
- {
- if (ptr)
- printf ("%s %s, %s\n", ptr -> firstname,
- ptr -> lastname, ptr -> ssnum);
- }
-
- /*Main - invoke create() and output() to test them.*/
- main ()
- {
- output (create ());
- }