Answer to Question 25B-7

Complex* sum(const Complex& a, const Complex& b)
{
  return new Complex(a.repart + b.repart, a.impart + b.impart);
}