Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Force 4.0 Reference - () grouping indicator http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 ()                  Grouping indicator
------------------------------------------------------------------------------
 Syntax
   ( <expr> )

 Arguments
   <expr> is an valid expression to evaluate before external expressions are
   evaluated.

 Description
   The () operator in expressions group certain operations for readability
   or to force a particular evaluation order.

 Example
   #define EXAMPLE_OPERATOR
   #include example.hdr

   proc Test_949
   ? 10 *   6 + 4   / 2         // prints 62
   ? 10 * ( 6 + 4 ) / 2         // prints 50
   endproc

   proc main
   Test_949()
   endproc

See Also: Operator precedence table

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson