Null-terminated string: Difference between revisions
Appearance
Created page with "A string of (n+1) characters where the (n+1)th character is the "null" character (X'00') and is used to represent an n- character string with implicit length. Also called a "z..." |
(No difference)
|
Revision as of 05:20, 28 October 2017
A string of (n+1) characters where the (n+1)th character is the "null" character (X'00') and is used to represent an n- character string with implicit length. Also called a "zero-terminated" string or an "ASCIIZ". string.