VarPtr&()
Previous  Next

Description: Returns the memory address of a variable.

     Syntax:
     
VarPtr&(<Variable>)

Part
Description
<Variable>
Required. The variable that you want to get the memory address of.

Example:

        a = 500
        b& = VarPtr&(a)
        Print b&