So I have a binary tree with nodes as shown below
typedef struct N { int num; struct N *left; struct N *right; }
I create root no