✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
void Output(TREE Root)
{
if (Root != NULL)
{
printf(“%d ”,Root-> Key);
if (Root->pLeft!=NULL)
Output(Root->pLeft);
if (Root->pRight!=NULL)
Output(Root->pRight);
}