Eugene
2011-07-28 06:34:08 UTC
Two versions are (prototypes shown):
double pow(double base, double exponent);
double pow(double base, int exponent);
a. What term describes the C++ feature that allows multiple
versions of function pow?
b. *Briefly* say how the compiler will know which version
to use if function pow is called in your code?