Write a recursive C function largestElem that takes only a LIST argument as
input, and returns the largest element in the list. LIST is defined in section 3 of the
"3. Recursion" notes.
largestElem may call other functions. largestElem must not use global or static
variables. Assume that the list only contains positive integers. If the list is empty,
return -1.
Document your code. (