qcenv.hlp (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.
Error Message
                                                  Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Error: A2108
     Empty string
 
     A statement used an empty string. For example, the following
     definition is illegal:
 
     null        DB      ""
 
     In many languages an empty string represents ASCII character 0.
     In assembly language, you must give the value 0, as shown below:
 
     null        DB      0
                                    -♦-