Vidyalelo
C++ Programming · Q141

Classes and Objects in C++

Programming · C++ Programming · question 141

Q141

What will be the output of the following C++ code? #include #include using namespace std; int main() complex c1(4.0,3.0); cout c2(polar(5.0,0.75)); cout (c2.real(),c2.imag()); return 0;

A.
c1: (4,3)(7.65844,6.40819)
Answer
B.
c1: (4,3)(7,6)
C.
both c1: (4,3)(7.65844,6.40819) & c1: (4,3)(7,6)
D.
c1: (5,3)(7,6)

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board