Problem
Write C++ progran to implement this function which returns the number of nodes present at level (passed in as parameter) of the binary tree.
root is at level 1
int NodesAtLevel(int level);
Explain every line of code and please read the quesfion first