Skip to content

Dereference Operator

IsaacShelton edited this page Mar 21, 2022 · 1 revision

* Operator (Dereference)

The * operator is used for dereferencing pointer values.

Example 1

*my_pointer

Example 2

*(x as *int)

Other Uses

The * operator has other uses, such as in pointer types, and the multiplication operator.

Clone this wiki locally