1.

Which of the following option is the correct representation of the following C statement?
t = p * q + r / s * u;

A. t = ((p * q) + (r / (s * u)));
B. t = ((p * q) + ((r / s)* u));
C. Both t = ((p * q) + (r / (s * u))); and t = ((p * q) + ((r / s)* u));
D. t = (p * (q +(r /(s * u))));
E. None of these
Answer» D. t = (p * (q +(r /(s * u))));


Discussion

No Comment Found

Related MCQs