Example Program: Part 2
float real(void) { return p_real; } // accessor function
float imaginary(void) { return p_imaginary; } // accessor function
complex operator+(complex b);
complex operator-(complex b);
int operator==(complex b);
Definition of class complex continued...