[prev] [index] [next]

Linked Structures

One particularly useful kind of structure:

typedef struct Node {
	char   name[MAXNAME];
	int    value;
	struct Node *next;
} NodeT;

Allows us to build structures like:

[Diagram:Pic/list.png]

Note that  struct Node  is the same type as  NodeT