Sail E0 Webinar
Question


What is the output of this program?


1.
#include
2.
#include
3.
using namespace std;
4.
int main()
5.
{
6.
complex c1(4.0, 16.0), c2;
7.
c2 = pow(c1, 2.0);
8.
cout
Options:
A .  (-240, 128)
B .  (240, 128)
C .  (240, 120)
D .  None of the mentioned
Answer: Option A

In this program, we are finding the square of the complex number.
Output:
$ g++ comp.cpp
$ a.out
(-240,128)



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers