typedef struct tcomplejo{ float real; float imag; }; void crear_complejo(tcomplejo &num) { cout<<"\nIngrese parte real: "; cin>>num.real; cout<<"Ingrese parte imaginaria: "; cin>>num.imag; } bool igualdad (tcomplejo a, tcomplejo b) { if(a.real==b.real) if(a.imag==b.imag) return true; else return false; else return false; } void suma(tcomplejo a, tcomplejo b, tcomplejo &c) { c.real=a.real+b.real; c.imag=a.imag+b.imag; } void resta(tcomplejo a, tcomplejo b, tcomplejo &c) { c.real=a.real-b.real; c.imag=a.imag-b.imag; } void prodEscalar(tcomplejo a, float N, tcomplejo &c) { c.real=a.real * N; c.imag=a.imag *N; } void mostrar(tcomplejo a) { cout<