https://ide.codingblocks.com/s/370171, Please rectify my code
I am not getting output in performing BST
Hey @rajcoolz_123
class node{
public:
int data;
node* left;
node* right;
node(int d)
{
data=d;
left=NULL;//removed node*
right=NULL;//removed node*
}
};
If this resolves your query then, please mark this as resolved 
1 Like
Thank you for resolving the issue, sorry for the silly mistake didn’t see it.
1 Like