I've been looking at some example code for a recursive function that inserts an element into a binary search tree. It's a relatively simple function that takes two arguments: the tree to be inserted into and the value to be inserted, the prototype looks like this: node* insert(node* p_tree, int value). Don't get me wrong, I understand what the function does I'm just not sure what would be sent to the function from main as 'p_tree' eg. insert(Something, 10)I'm assuming that you could write insert(NULL, 10) on the first call but I'm completely clueless as to what you would do in any subsequent calls. Anyway, any help would be much appreciated and code showing a call from main would be great.