Which of the following option is the correct representation of the following C statement?
e = a * b + c / d * f;
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. e = (a * (b +((c / d) * f)));
Answer: Option C
Join The Discussion