# C string

C string is a series of characters terminated by a null
(0x00) character usually used in C.

Note: C strings, or pointers to C strings, *cannot* be passed directly to _CP_ functions unless otherwise
noted.

## Example(s)

```
char x [] = "hi there";
```

---
Source: https://d3codex.com/cfunctions/c-string/ - part of the D3Codex reference.
