Name: Anonymous 2011-11-02 1:33
+-------+-------+
| | |
| car | cdr |
| | |
+-------+-------+
+-------+-------+
| | |
| car | cdr |
| | |
+-------+-------+
'>storing strings in memory as car/cudder pairs
ISHYGDDT
#define MEMORY_SIZE (640 * 1024)
union cell {
int num;
float flo;
void* ptr;
};
union cell mem[MEMORY_SIZE];