Multiple choice

Which of the following operators are arranged from higher to lower priority in solving any particular expression?

  1. (>>) > (&) > (^) > (&&) = (sizeof)

  2. (sizeof) > (&) = (^) > (&&) > (>>)

  3. (&) = (sizeof) > (>>) > (^) > (&&)

  4. (^) > (&&) = (>>) > (&) > (sizeof)

  5. None of these

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

This order is correct.