Computer Science, asked by anmol3306, 3 months ago

float m;
p=m/3*( math.pow ( 4,3);

Answers

Answered by prayasbhardwaj786
0

Answer:

m/3*(Math.pow(4,3))

⇒ float / int * double

[∵Math.pow returns double]

⇒ float * double

⇒ double

So the return data type of this expression is double.

Similar questions