Songs in Code: A Forest, The Cure

struct tree {
    void *item;
    tree *left;
    tree *right;
}
void song() {
    tree title[10000]; /* come closer and find the code */
}

Explanation: “title” is lots of trees.

Category: