TREE *createTree(void)
{
TREE *tree;
tree = (TREE *)malloc(sizeof(TREE));
if(tree)
{
printf("Tree created successfully. . .\n");
tree->root =...