Prev
Next
8.2. Parenthesized Expressions
Expressions take precedence on one another. For example, addition has a higher precedence than the comma. Parentheses allow you to change precedence.
If the parentheses are empty, the empty sequence is produced.
Example 8.3. Empty sequence.
( 2 + 3 ) * 5, ()
Results:
25
Prev
Chapter 8. Basic Operations
Up
Home
Next
8.3. Arithmetics