Skip to content

Instantly share code, notes, and snippets.

View davissp14's full-sized avatar

Shaun Davis davissp14

View GitHub Profile
@davissp14
davissp14 / linked_list.c
Created December 21, 2012 05:19
Basic implementation of a linked list in C.
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
typedef struct person {
char *name;
struct person *next;
} person;
void display(person *start) {