The first function is passed pointers to two integers. The function should return whichever pointer points to the larger integer. Complete the function. The second function should return whichever pointer points to the largest of the three integers whose addresses are provided. Complete this function also.

Remember that your dealing with pointers here and the functions should return POINTERS!


#include <stdio.h>...