Make a pointer variable maxPtr that points to the maximum value
among the five variables a, b, c, d, e. Do so using the
inline comparison operator.
An example of its use is:
int *maxPtr;
maxPtr = (a>b) ? &a: &b;
etc. It will take three more to get maxPtr right.