[prev] 42 [next]

Self-referential Structures (cont)

When defining self-referential types with typedef

typedef struct node {
   int data;
   struct node *next;
} NodeT;