This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Author: Tad DeVries <[email protected]> | |
* Date: 2013/02/27 | |
* | |
* Language: C | |
* | |
* Description: This program demonstrates a simple doubly linked list | |
* used to store names and phone numbers. There are methods to add, search, | |
* edit, delete, and print records. This program ignores user input validation | |
* since pointer and memory manipulation are the key goals. |