qa.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.
? (Uninitialized Value)
   Operator Summary  Summary
──────────────────────────────────────────────────────────────────────────────
 
  Syntax: ?
 
   Used as an initializer in data declarations; indicates a value that
   the assembler allocates but does not initialize. Can be used alone
   or with DUP, as in the following examples:
 
   foo      DW      ?           ; Allocate one uninitialized word
   foo2     DB      ?,?,?       ; Allocate three uninitialized bytes
   foo3     DB      20 DUP (?)  ; Allocate 20 uninitialized bytes
                                    -♦-