Vidyalelo
C Programming · Q246

Standard Library Functions

Programming · C Programming · question 246

Q246

What will be the output of the following C code? double x, deg, rad; x = 1.0; val = 180.0 / 3.14; deg = atan (x) * val; printf("The arc tangent of %lf is %lf degrees", x, deg);

A.
The arc tangent of 1.000000 is 45.000000 degrees
Answer
B.
The arc tangent of 1.000 is 45.000degrees
C.
The arc tangent of 1 is 45 degrees
D.
The arc tangent of 1.0000is 45.0000degrees

Answer: Option A

Solution

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