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));
AnswerD.
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