I have doubts about the code below:
Complejo Complejo::operator+ (const Complejo &c){
Complejo resultado;
resultado.real = real + c.real;
resultado.img = img + c.img;
return resultado;
}
In this operator, what is the difference between "real" and "real"?