Question: Write a program which will do the following: a) Show ho to declare a tag named complex for a structure with two members, real and
Write a program which will do the following:
a) Show ho to declare a tag named complex for a structure with two members, real and imaginary or type double.
b) Use the complex tage to declare variables named c1, c2, and c3.
c) Write a function named make_complex that stores its two arguments (both of type double) in a complex structure, then returns the structure.
[Note: The function declaration for the make_complex function looks like struct complex make_complex(double real, double imaginary);
d) Write a function named add_complex that adds the corresponding members of its arguments (both complex structures), then returns the result (another complex structure).
[Note: The function declatration for the add_complex function looks like struct complex add_complex(double real, double imaginary);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
