String Zero: Difference between revisions
Jump to navigation
Jump to search
InvaderZim (talk | contribs) No edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
[[category:variables]] | [[category:variables]] | ||
'''''S'''tring '''Z'''ero'' commonly referred to as "sz" or "Null-Terminated String" is a [[string]] followed by a | '''''S'''tring '''Z'''ero'' commonly referred to as "sz" or "Null-Terminated String" is a [[string]] followed by a {{wiki|null character}}. | ||
In C++, | In C++, the {{wiki|escape character}} for null is <code>\0</code>. | ||
==See also== | |||
*[[Wikipedia:Hungarian notation]] | |||
[[Category:Glossary]] | [[Category:Glossary]] |
Revision as of 19:32, 3 July 2006
String Zero commonly referred to as "sz" or "Null-Terminated String" is a string followed by a null character.
In C++, the escape character for null is
\0
.