1/27/2003
CS2 Week 7
9
struct BookRec
{
   char*  author;
   char*  title;
   char*  publisher;
  
   /* etc.: other book information. */
};
typedef struct BookRec Book;
Book Record
 key