aboutsummaryrefslogtreecommitdiffstats
path: root/source/arduino/pointer.rst
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@mit.edu>2010-10-25 21:15:28 -0400
committerMarti Bolivar <mbolivar@mit.edu>2010-11-17 12:44:28 -0500
commit2d429e75ce69e77f8c95490ac03881ec9aa0354a (patch)
treea3b810a6c75625b07a4b976e5d1e319c60e19a6b /source/arduino/pointer.rst
parent30ac55d80c18e93f9c39a6dd850c10f9e7fd92ac (diff)
downloadlibrambutan-2d429e75ce69e77f8c95490ac03881ec9aa0354a.tar.gz
librambutan-2d429e75ce69e77f8c95490ac03881ec9aa0354a.zip
arduino language reference nearing completion, properly CC-BY-SA 3.0 attributed
Diffstat (limited to 'source/arduino/pointer.rst')
-rw-r--r--source/arduino/pointer.rst17
1 files changed, 13 insertions, 4 deletions
diff --git a/source/arduino/pointer.rst b/source/arduino/pointer.rst
index 4e4b9e5..b9bbc48 100644
--- a/source/arduino/pointer.rst
+++ b/source/arduino/pointer.rst
@@ -1,10 +1,8 @@
.. _arduino-pointer:
-The pointer operators
-=====================
+The pointer operators: & (reference) and \* (dereference)
+=========================================================
-& (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
@@ -13,4 +11,15 @@ 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.
+Introducing pointers is somewhat outside the scope of this
+documentation. However, a good `pointer tutorial
+<http://www.cplusplus.com/doc/tutorial/pointers/>`_ is available.
+Also see the `Wikipedia article on pointers
+<http://en.wikipedia.org/wiki/Pointer_%28computing%29>`_, especially
+the section on `pointers in C
+<http://en.wikipedia.org/wiki/Pointer_%28computing%29#C_pointers>`_.
+See Also
+========
+
+- http://xkcd.com/138/