Skip to content

Instantly share code, notes, and snippets.

View Bhaskara20's full-sized avatar
🎯
Focusing

Andru Baskara Putra Bhaskara20

🎯
Focusing
  • Binus University
  • Sidoarjo,East Java,Indonesia
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.