Write a function to find the depth of a binary tree.
int Depth(struct Node*node,int level) { if(Node!=NULL) { if(level<depth) depth=level; Depth(Node->leftchild,level+1); Depth(Node->rightchild,level+1); } return(depth); }