#복소수 #실수 #허수 #합 #곱 #곱셈 #크기 복소수의 합 #include struct complex { double real; double imag; }; int main() { struct complex c1 = { 1.2, 2.4 }; struct complex c2 = { 1.1, 2.2 }; struct complex c; c.real = c1.real + c2.real; c.imag = c1.imag + c2.imag; printf("%f, %f\n", c.real, c.imag); return 0; }; 복소수의 곱셈 https://gonyzany.tistory.com/202 (C언어) 복소수의 곱셈 #복소수 #합 #덧셈 #곱셈 #곱 #크기 복소수의 곱셈 #include struct com..