I have a BST storing some data. If I display it using this function, it is displayed in descendant order.
void print_inorder_desc(tree *b) { if(b!=NULL)