Home » C Programming » Operators » Question
  1. Which of the following is the correct order of evaluation for the given expression?
    calc = s % p / q * R;
    1. * % / =
    2. = % * /
    3. / * % =
    4. % / * =
    5. None of these
Correct Option: D

% / * =



Your comments will be displayed only after manual approval.