# _CP_is_

_CP_is_ converts an integer into a CPSTR.

## Syntax

```
CPSTR * _CP_is_(int number)
```

## Example(s)

Displays 1.

```
CPSTR * s = _CP_is_(1.123);
_CP_print(s);
```

## See also

- [C functions overview](https://d3codex.com/cfunctions/c-functions-overview/)

---
Source: https://d3codex.com/cfunctions/cp-is/ - part of the D3Codex reference.
