CodeView (cv.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
Display Expression (Example)
 Summary Description                     Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
          >? amount
          500
          >? amount,x
          01f4
          >? amount, lx
          000001f4
          >? amount,o
          764
          >
 
     The example above displays the value stored in the variable
     amount, an integer. This value is first displayed in the system
     radix (in this case, decimal); then in hexadecimal; then in
     4-byte hexadecimal; and then in octal.
 
          >? mystruct
          {c1=123, c2={a=1, b=2}, c3=0x1000:2d34}
 
     The example above shows how CodeView displays a C structure.
 
     NOTE: Nested structures are displayed within an extra set of
           braces.
                                    -♦-