Height of Binary Tree int height(struct Node* node) { if(node==NULL) return 0; return 1+ max(height(node->left),height(node->right)) ; }