Content deleted Content added
Stevebroshar (talk | contribs) |
Stevebroshar (talk | contribs) |
||
Line 165:
WRT "A string is generally considered as a data type"
To illustrate the difference between string data and data type, consider C. It has no string type. The most commonly used data type for string data is char*; pointer to char. That is not a string type, yet it is used for string data. Note that char* can be used for non-string data; a pointer to a single char storage, for example. FWIW, the [[data structure]] is called [[null-terminated string]] or c-string.
|