Skip to content

Instantly share code, notes, and snippets.

@rawcoder
rawcoder / heterogeneous_linked_list.cpp
Created March 23, 2014 09:45
Heterogeneous Linked List
// Program for creating a heterogeneous linked list
// BUGS: fails for strings e.g. abc -> a (b,c are not read)
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
const int SIZE = 80;
typedef enum { INT, CHAR, FLOAT } Type;
typedef struct node__ {