Hey everybody I am working on a program where I have created a binary tree with node as described below:-



struct node {
uint32_t data;
uint32_t bitstring;
uint32_t level;
...