Vidyalelo
C Programming · Q139

C Fundamentals

Programming · C Programming · question 139

Q139

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));
Answer
D.
e = (a * (b +((c / d) * f)));

Answer: Option C

Solution

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