* Operator

The * Operator is used to multiply two numbers.


 *result = operand1 * operand2* 
        

Remarks

The operands can be any numeric expression.

Example

 StartSec = (Hour * 3600) + (Min * 60) + Sec      

See Also

Operators

Operators and Their Precedence