Question:
Simple Recursion Function
My goal is, given this function prototype, I need the recursive definition of the function.
int Location(ArrayType a, int first, int last, Element elm)
{
/* returns the location of elm in a[first], ... , a[last]. If not found, return 0 */
}