-
Which of the following option is the correct representation of the following C statement?
t = p * q + r / s * u;
-
- t = ((p * q) + (r / (s * u)));
- t = ((p * q) + ((r / s)* u));
- Both t = ((p * q) + (r / (s * u))); and t = ((p * q) + ((r / s)* u));
- t = (p * (q +(r /(s * u))));
- None of these
Correct Option: C
Verified by t = 1 * 2 + 3 / 4 * 5; and then using respective braces according to the option.