Common operator notation: Difference between revisions

Content deleted Content added
there is no postfix ! operator. also ++ and -- only work on lvalues.
Standard notation.
Line 44:
Examples:
 
:<tt>1 + 2 + 3 * 4 * 5 + 6 + 7 == ((((1 + 2) + ((3 * 4) * 5)) + 6) + 7)</tt>
 
:<tt>4 + -x + 3 == ((4 + (-x)) + 3)</tt>
 
==Generalizations of Common Operator Notation==