Operators

From Mesham
Revision as of 23:56, 3 January 2010 by Polas (talk | contribs) (Created page with '== Operators == #+ #- #* Multiplication #% Division #<< Bit shift to left #>> Bit shift to right #== Test for equality #!= Test for inverse equality #= Test of equa…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Operators

  1. +
  2. -
    • Multiplication
  3. % Division
  4. << Bit shift to left
  5. >> Bit shift to right
  6. == Test for equality
  7. != Test for inverse equality
  8. = Test of equality on strings
  9. < Test lvalue is smaller than rvalue
  10. > Test lvalue is greater than rvalue
  11. <= Test lvalue is smaller or equal to rvalue
  12. >= Test lvalue is greater or equal to rvalue
  13. || Logical OR
  14. && Logical AND