Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

2. Complex numbers are numbers that consist of a real part and an imaginary part. A complex number is expressed as:r+bi, where r is the

image text in transcribedimage text in transcribed

2. Complex numbers are numbers that consist of a real part and an imaginary part. A complex number is expressed as:r+bi, where r is the real part, b is the imaginary part, and i is the square root of -1. The C programming language does not include complex numbers as a native data type, i.e. no data type definition and also no operations to add, subtract, multiply, and divide complex number. Therefore, a programmer needs to write his/her own programs to deal with complex numbers. We will define a complex number as a structure with two floating point attributes as follows: struct complex { float re; // The real part float im; // The imaginary part }; The C program below use the above mentioned complex number definition and asks the user to enter two complex numbers, adds the two numbers, and displays the sum. #include struct complex { float re;// The real part float im; // The imaginary part }; int main() { struct complex complex1, complex2, sum; printf("Enter the first complex number "); printf("Enter the real part "); scanf("%f", &complex1.re ); printf("Enter the imaginary part "); scanf("%f", &complex1.im ); printf("Enter the second complex number "); printf("Enter the real part "); scanf("%f", &complex2.re); printf("Enter the imaginary part "); scanf("%f", &complex2.im ); sum.re = complexi.re + complex2.re; sum.im = complex1.im + complex2.im; 1/ show the sum printf("Sum is (%f, %fi) ", sum.re, sum.im); return 0; } A. Modify the above program so that the addition of two complex numbers will be done in a function instead of doing it in the main function. Bellow the function frame: struct complex add(struct complex z1, struct complex 22) { struct sum; 1/Add your code here return sum; } B. Modify your code by adding separate functions to compute the difference between the two complex numbers, the product of the two complex numbers, and the result of dividing the first complex number by the second complex number. Hint: consider the two complex numbers The difference between the two numbers is (real1 - real2) + (imag1 - imag2) The product of the two numbers is (real1* real2 -imag1*imag2 ) + (real1*imag2+ real2*imag1) i The division of the first complex number by the second complex number is given by: real1 * real2 + imag1 * imag2, real2 * imag1 real1 * imag2 + real22 + imag22 real22 + imag22 (real

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Microsoft Visual Basic 2017 For Windows Web And Database Applications

Authors: Corinne Hoisington

1st Edition

1337102113, 978-1337102117

More Books

Students also viewed these Databases questions

Question

What is operatiing system?

Answered: 1 week ago