I have this code:
typedef struct node* AVLNode; struct node { char Word[50]; AVLNode Left; AVLNode Right; }; void Insert(char* S, AVLNode T) {