Null-terminated string: Difference between revisions

Content deleted Content added
m Derrick Coetzee - Robot-assisted disambiguation: Character
No edit summary
Line 1:
In computing, '''C strings''' are [[string]]s stored as one-dimensional [[character (computing)|character]] [[array]]s in the [[C programming language|C]] and [[C Plus Plus|C++]] programming languages. In C, they are simply called "strings," while in C++ they are called "C strings" to differentiate them from [[Standard Template Library|STL]] ([[ANSI]] standard C++) strings. C strings are distinguished by the fact that they are terminated with a [[null character]] ('\0'). This null-termination characteristic has historically created security problems related to the length of the string.
 
==External links==
==See also==
*[http://www.eecs.umich.edu/~kieras/eecs280w00website/lecture/C_string_functions.html ''C String Functions''] by [http://www.eecs.umich.edu/~kieras/ ''David E. Kieras'']
* [[character string]]
* [[strcpy]]
* [[strcat]]
* [[strlen]]
* [[strlcpy]]
 
----
A number of [[stringed instrument]]s, including the [[viola]] and [[cello]], have a string that, when played open, produces the note [[middle C|C]]. This is usually referred to as the '''C string'''.
 
[[Category:C programming language]]