Skip to content

Instantly share code, notes, and snippets.

View dolendravikas's full-sized avatar
🔌
electronics hobbyist

Addepalli Dolendra Vikas dolendravikas

🔌
electronics hobbyist
  • Los Angeles, CA
  • 21:06 (UTC -07:00)
View GitHub Profile
@taddev
taddev / listExample.c
Created February 28, 2013 00:02
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.
/*
* 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.