if i have a function
void insert3 (node ***tree, char *word)
where tree is a bst, how would i call the function recursively on the left branch of the tree? I tried insert3(&(**tree)->left,word) but that gives me the error:
Error : illegal implicit conversion from 'struct node_s **' to
'struct node_s ***'
main.c line 127 insert3(&(**tree)->left,word);
void insert3 (node ***tree, char *word)
where tree is a bst, how would i call the function recursively on the left branch of the tree? I tried insert3(&(**tree)->left,word) but that gives me the error:
Error : illegal implicit conversion from 'struct node_s **' to
'struct node_s ***'
main.c line 127 insert3(&(**tree)->left,word);