Two binary trees are identical if they have same data at root node and identical left and right sub-trees. Compare two binary trees and determine whether they are identical or not.
InputYou need to write a function named "CompareBinaryTrees" that will take pointers to the roots of two binary trees as argument.
OutputYour function must return 1 if trees are identical, 0 otherwise.