0_0_26572569_27669.cpp: In function 'void search(node*, int)':
0_0_26572569_27669.cpp:34:21: error: 'struct node' has no member named 'tt'
printf("%d",root->tt);
^
0_0_26572569_27669.cpp:39:19: error: too few arguments to function 'void search(node*, int)'
search(root->left);
^
0_0_26572569_27669.cpp:28:6: note: declared here
void search(node *root,int n)
^
0_0_26572569_27669.cpp:40:20: error: too few arguments to function 'void search(node*, int)'
search(root->right);
^
0_0_26572569_27669.cpp:28:6: note: declared here
void search(node *root,int n)
^
0_0_26572569_27669.cpp: In function 'int main()':
0_0_26572569_27669.cpp:54:20: error: too few arguments to function 'void search(node*, int)'
search(root);
^
0_0_26572569_27669.cpp:28:6: note: declared here
void search(node *root,int n)
^
|