Answer the question below in C programming language by using…
QuestionAnswered step-by-stepAnswer the question below in C programming language by using…Answer the question below in C programming language by using concepts of tree and source code given. Image transcription textWrite a function boo] BSTzzdeepestNodeSOin BST class that ?nds and prints all the nodes at the deepestlevel. For example, the deepest nodes of treel in Figure 3.2 are 2, 7 and 12 while tree2 has only 21. (Hint: Youcan either use height of tree to look for deepest). Function will return false for empty tree and tru… Show moreSource Code: BST.cpp#include


