Answer to Question treecpp-8

  void destroy(Tree T)
  {
    if(T != NULL)
    {
      destroy(T->left);
      destroy(T->right);
      delete T;
    }
  }