qASCIIZ

              ASCIIZ String
──────────────────────────────────────────
A sequence of characters terminated by an
ASCII NUL byte (00H).

ASCIIZ strings are the standard text
string used in the C programming language:

  char szMyFile[]="c:myfile.txt";

In assembly language:

  szMyFile db 'c:myfile.txt',0