RETURNS THE ADDRESS OF VARIABLE V
ACTION
The function ADR(V) returns the address of the variable V.
The variable must be a simple variable (not an element of array), integer, real or string.
SYNTAX:
Result=ADR(V)
USE ERROR EXAMPLE
dim a%,b,c$
print adr(a%)
print adr(b)
print adr(c$)
ADR()
ADR(V)
SEE ALSO
DIM
DIM_LOCAL
FREE