Valid Addresses and
Expressions
Here are some examples of addresses or expressions you can
enter in the Address or expression field of the Set
Storage Change dialog:
- MyVariable
- : The address pointed to by MyVariable, if such
a variable exists in your program, and if its value is a
valid storage address (for example, if the variable is a
pointer to another variable or to an offset within an
array).
- &MyVariable
- The storage of the variable MyVariable.
- A1FCC
- The hex address A1FCC, unless you have a variable
declared as A1FCC, in which case it is treated
the same as MyVariable above.
- 0xA1FCC
- The hex address A1FCC.
- RegisterName
- The name of a processor register
on the system the debuggee program is running on. If the
expression evaluates to a processor register, that
register's contents are used in place of the register
name.

Supported C++ expressions