adplus-dvertising
frame-decoration

Question

Which of the following option is the correct representation of the following C statement?
e = a * b + c / d * f;

a.

e = (a * (b +(c /(d * f))));

b.

e = ((a * b) + (c / (d * f)));

c.

e = ((a * b) + ((c / d)* f));

d.

Both b and c

Answer: (d).Both b and c

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which of the following option is the correct representation of the following C statement?