Advertisement
AKIB37

Untitled

Feb 18th, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. 1. ! has same precedence as unary plus and minus
  2.  
  3. 2. && and || has lower precedence than relational and equality
  4. operators: i < j && k == m → (i < j) && (k == m)
  5.  
  6. 3.C rule → else belongs to the nearest if that hasn’t been
  7. paired with an else
  8.  
  9. 4.Conditional operator has precedence only greater than
  10. assignment operators and less than all others discussed so far
  11. → Parentheses are necessary
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement