Examveda
Examveda

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

Answer: Option C


This Question Belongs to C Program >> C Fundamentals

Join The Discussion

Related Questions on C Fundamentals