#define NULL 0 typedef char DATA; struct stack { DATA d; struct stack *next; }; typedef struct stack ELEMENT; typedef ELEMENT *TOP;