原创 C語言:計算兩個複數的乘積

複數結構定義如下: struct Complex { float real; float image; }; 計算複數函數原型爲:struct Complex complex_prod(struct Complex c1, str