# _CP_out

_CP_out is equivalent to the out BASIC statement.

## Syntax

```
int _CP_out(int expression)
```

## Description

This function returns -1 if
an error occurs. The error code is contained in _CP_errno.

Note: The environment must be set to _CP_pick_env for _CP_out to work properly.

## Example(s)

```
/* Prints a space. */
_CP_out(0x20);
```

## See also

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

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