friend ostream &operator << (ostream &apm;s, complex &apm;c);
friend istream &operator >> (istream &apm;s, complex &apm;c);
ostream &operator << (ostream &s, complex &c)
{
  s << “(“ << c.real << “,” << c.imag << “)”;
  return s;
}

About our authors: Team EQA

You have viewed 1 page out of 62. Your C++ learning is 0.00% complete. Login to check your learning progress.

#