What is Wrong with my code ❓
include <iostream.h> include <conio.h> class complex { float real,img; public: void assign(float x,float y) { real=x; img=y; } void print() { if(img>=0) cout<<real<<"+"<<img<<"i"; else cout<<real<<img<<"i"; getch(); } }; void add( float a,float b,float c, float d) { float e,f;complex g; e=a+c; f=b+d; g.assign(e,f); g.print(); } void sub( float a,float b,float c, float d) { float e,f;complex g; e=a-c; f=b-d; g.assign(e,f); g.print(); } void mul( float a,float b,float c, float d) { float e,f; complex g; e=a*c-b*d; f=b*c+a*d; g.assign(e,f); g.print(); } void main() { float a,b,c,d; complex x,y,z; clrscr(); cout<<" for complex 1:"; cout<<"real part:"; https://code.sololearn.com/coLFDkeQVjRU/?ref=app