#define STSIZE 10 typedef struct symb { char *name; int type,value,level,size,dim; struct symb *left,*right; struct node *init; } SYMB; typedef struct node { int op; struct node *left; struct node *right; int value; SYMB *symbol; } NODE;