aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/arduino/pointer.rst
blob: 4e4b9e524f3c7d535b6118bf637c2748f31fd166 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.. _arduino-pointer:

The pointer operators
=====================

& (reference) and \* (dereference)
==================================

Pointers are one of the more complicated subjects for beginners in
learning C, and it is possible to write the vast majority of
Arduino sketches without ever encountering pointers. However for
manipulating certain data structures, the use of pointers can
simplify the code, and and knowledge of manipulating pointers is
handy to have in one's toolkit.