Write a function to add, subtract, multiply, and divide two complex numbers (x +iy) and (c + id). in C
Write a function to add, subtract, multiply, and divide two complex numbers (x +iy) and (c + id). in C typedef struct {double real;double imaginary;} Complex; Complex addComplex(Complex a, Complex
