Home » C Programming » Operators » Question
  1. Which of the following option is the correct representation of the following C statement?
    t = p * q + r / s * u;
    1. t = ((p * q) + (r / (s * u)));
    2. t = ((p * q) + ((r / s)* u));
    3. Both t = ((p * q) + (r / (s * u))); and t = ((p * q) + ((r / s)* u));
    4. t = (p * (q +(r /(s * u))));
    5. None of these
Correct Option: C

Verified by t = 1 * 2 + 3 / 4 * 5; and then using respective braces according to the option.



Your comments will be displayed only after manual approval.