From ee35f641687d0d3159c15eea5ad80d71efff4f82 Mon Sep 17 00:00:00 2001 From: Marti Bolivar Date: Mon, 29 Nov 2010 01:49:26 -0500 Subject: Finished converting the Arduino docs --- source/lang/unsignedlong.rst | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'source/lang/unsignedlong.rst') diff --git a/source/lang/unsignedlong.rst b/source/lang/unsignedlong.rst index 2ca49f8..14a4fc3 100644 --- a/source/lang/unsignedlong.rst +++ b/source/lang/unsignedlong.rst @@ -2,11 +2,8 @@ .. _lang-unsignedlong: -unsigned long -============= - -Description ------------ +``unsigned long`` +================= An unsigned version of the :ref:`long ` data type. An ``unsigned long`` occupies 8 bytes of memory; it stores an integer @@ -19,8 +16,8 @@ won't store negative numbers; it is also subject to the same Here is an example of declaring an ``unsigned long`` variable named ``c``, then giving it value 299,792,458,000,000,000 (see :ref:`integer -constants ` for an explanation of the "L" at the -end of the number):: +constants ` for an explanation of the "L" +at the end of the number):: // Speed of light in nanometers per second (approximate). unsigned long c = 299792458000000000L; -- cgit v1.2.3