What knowledge do I need for programming a complex calculator?
Like I've already programed one with +,-,*,/ but now I want to add sqrt and such things... I don't want someone to show me how to do I just want to know what I need to know so I can create it by myself.
> Like I've already programed one with +,-,*,/ but now I want to add sqrt and such things...
> I just want to know what I need to know so I can create it by myself.
This is all that you need to know for extending your calculator with more operations on complex numbers: http://en.cppreference.com/w/cpp/numeric/complex
(assuming that the underlying floating point type used is float, double or long double)