Hex Editor
Hex Editor - Binary File Editing Software for Windows

() Expression Grouping Operator

HHD Software - Hex Editor Serial Port Monitor USB Protocol Analyzer Network Monitor
 
 
 
< PreviousTopNext >

Expression grouping operator allows you to change the precedence rules of operators in an expression.

Syntax:

(exp)
      

The following code fragment illustrates the use of the expression grouping operator:

2 + 3 * 4 - 7       // evaluates to 7
2 + 3 * (4 - 7)      // evaluates to -7
      

You can use parenthesis whenever you need to change the precedence of operators or increase the readability of the expression.

< PreviousTopNext >
Copyright © 2012 HHD Software. All rights reserved.