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 - * multiplication operator (binary) http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 *                   Multiplication operator (binary)
------------------------------------------------------------------------------
 Syntax
   nNumber1 * nNumber2

 Arguments
   nNumber1 is a numeric expression to multiply by nNumber2.
   nNumber2 is a numeric expression by which nNumber1 is multiplied.

 Description
   The * operator returns a numeric value resulting from multiplying
   the two operands.

 Example
   #define EXAMPLE_OPERATOR
   #include example.hdr

   proc Test_922
   ?  3 *  0            // prints  0
   ?  3 * -2            // prints -6
   ? -3 *  2            // prints -6
   ? -3 *  0            // prints  0
   ? -1 *  3            // prints -3
   ? -2 * -3            // prints  6
   ?  2 * -3            // prints -6
   ?  1 * -3            // prints -3
   endproc

   proc main
   Test_922()
   endproc

See Also: /

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