I am getting error while trying to compile the following code. I am beginner. Please help me figuring it out. I am trying to overload the operators _,+,/,*. It shows error while compiling. Should I use "friend" to solve this?
#include<stdio.h>
class complex{
private:
    double real; //real part of complex
    double imag; // imaginary part of complex
public:
    complex(double r=0., double i=0.):real(r),imag(i)
    {
    } // constructor with initialization
    complex(const complex&c):real(c.real),imag(c.imag)
    {
    } // copy constructor with initialization
    ~complex()
    {
    } // destructor
    double re() const
    {
        return real;
    } // read real part
    double im() const
    {
        return imag;
    } // read imaginary part
    const complex& operator=(const complex&c)
    {
        real=c.real;
        imag=c.imag;
        return *this;
    } //assignment operator
    const complex& operator+=(const complex&c)
    {
        real += c.real;
        imag += c.imag;
        return *this;
    } // addition of current complex
    const complex& operator-=(const complex&c)
    {
        real -= c.real;
        imag -= c.imag;
        return *this;
    } // subtract from current complex
    const complex& operator*=(const complex&c)
    {
        double keepreal = real;
        real = real*c.real-imag*c.imag;
        imag = keepreal*c.imag+imag*c.real;
        return *this;
    } // multiply current complex with a complex
    const complex& operator/=(double d)
    {
        real /= d;
        imag /= d;
        return *this;
    } // divide current complex with real
    void print(const complex&c)
    {
        printf("(%f,%f)\n",c.re(),c.im() );
    } // printing complex number
    friend complex operator !(const complex& c)
    {
        return complex(c.re(),-c.im());
    }
    friend double abs2(const complex& c)
    {
        return c.re()*c.re()+c.im()*c.im();
    } // absolute value of complex
    const complex& operator/=(const complex&c)
    {
        return *this *= (!c)/=abs2(c);
    } // divide the current complex by a complex
    const complex operator-(const complex& c)
    {
        return complex(-c.re(),-c.im());
    } // negative of complex number
    const complex operator-(const complex& c,const complex& d)
    {
        return complex(c.re()-d.re(),c.im()-d.im());
    } // difference between complex numbers
    const complex operator+(const complex& c,const complex& d)
    {
        return complex(c.re()+d.re(),c.im()+d.im());
    } // addition of complex numbers
    const complex operator*(const complex& c,const complex& d)
    {
        return complex(c)*=d;
    } // multiplication of complex numbers
    const complex operator/(const complex& c,const complex& d)
    {
        return complex(c)/=d;
    } // division of complex numbers
};
int main(){
    complex c(1.,0.),d(3.,4.);
    print(c-d);
    print(c/d);
    return 0;
}
the output I am getting is:
complex_nums.cpp:76:59: error: ‘const complex complex::operator-(const complex&, const complex&)’ must take either zero or one argument
  const complex operator-(const complex& c,const complex& d)
                                                           ^
complex_nums.cpp:80:59: error: ‘const complex complex::operator+(const complex&, const complex&)’ must take either zero or one argument
  const complex operator+(const complex& c,const complex& d)
                                                           ^
complex_nums.cpp:84:59: error: ‘const complex complex::operator*(const complex&, const complex&)’ must take either zero or one argument
  const complex operator*(const complex& c,const complex& d)
                                                           ^
complex_nums.cpp:88:59: error: ‘const complex complex::operator/(const complex&, const complex&)’ must take exactly one argument
  const complex operator/(const complex& c,const complex& d)
                                                           ^
complex_nums.cpp: In function ‘int main()’:
complex_nums.cpp:96:11: error: ‘print’ was not declared in this scope
  print(c-d);
           ^
complex_nums.cpp:97:9: error: no match for ‘operator/’ (operand types are ‘complex’ and ‘complex’)
  print(c/d);
 
     
     
     
    