void preorder(NODE *Node) { printf("%c ", Node->data); preorder(Node->leftchild); preorder(Node->rightchild); } In the above...
Separate names with a comma.