String Zero: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(7 intermediate revisions by 5 users not shown)
Line 1: Line 1:
[[category:variables]]
{{lang|String Zero}}
'''''S'''tring '''Z'''ero'' commonly referred to as "sz" or "Null-Terminated String" is a [[string]] followed by a [[Wikipedia:Null character|Null Character]].
{{stub}}
'''''S'''tring '''Z'''ero'' commonly referred to as "sz" or "Null-Terminated String" is a [[string]] followed by a {{wiki|null character}}.


In C++, a null character is written as '\0'
In C++, the {{wiki|escape character}} for null is <code>\0</code>.


'''See also:''' [[Wikipedia:Hungarian notation]]
==See also==
*{{w|Hungarian notation}}


[[Category:Glossary]]
[[Category:Glossary]]
[[Category:Variables]]

Latest revision as of 03:52, 3 February 2024

English (en)Deutsch (de)Translate (Translate)

Stub

This article or section is a stub. You can help by expanding it.

String Zero commonly referred to as "sz" or "Null-Terminated String" is a string followed by a Wikipedia icon null character.

In C++, the Wikipedia icon escape character for null is \0.

See also