Category: C Programming

Post

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 b) {Complex result;result.real = a.real + b.real;result.imaginary = a.imaginary + b.imaginary;return result;} Complex subtractComplex(Complex a, Complex b) {Complex result;result.real = a.real – b.real;result.imaginary = a.imaginary...

Post

Write a program for the interest charged in installments for the following case. A cassette player costs Rs. 2000. A shopkeeper sells it for Rs. 100 down payment and Rs. 100 for 21 more months. What is the monthly interest charged?

Write a program for the interest charged in installments for following case. A cassetteplayer costs Rs. 2000. A shopkeeper sells it for Rs. 100 down payment and Rs. 100for 21 more months. What is the monthly interest charged? principal = 2000 # Principal amount (cost of the cassette player)down_payment = 100 # Down payment made...