From 9f25ce12f15a952d4ca8f432f2b3e1983d6b4592 Mon Sep 17 00:00:00 2001 From: Nadeen Udantha Date: Tue, 10 Apr 2018 14:40:57 +0530 Subject: [PATCH] Update unsignedInt.adoc added missing bracket --- Language/Variables/Data Types/unsignedInt.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Language/Variables/Data Types/unsignedInt.adoc b/Language/Variables/Data Types/unsignedInt.adoc index a0cf88cfc..4949a0b58 100644 --- a/Language/Variables/Data Types/unsignedInt.adoc +++ b/Language/Variables/Data Types/unsignedInt.adoc @@ -17,7 +17,7 @@ subCategories: [ "Data Types" ] [float] === Description -On the Uno and other ATMEGA based boards, unsigned ints (unsigned integers) are the same as ints in that they store a 2 byte value. Instead of storing negative numbers however they only store positive values, yielding a useful range of 0 to 65,535 (2^16) - 1). +On the Uno and other ATMEGA based boards, unsigned ints (unsigned integers) are the same as ints in that they store a 2 byte value. Instead of storing negative numbers however they only store positive values, yielding a useful range of 0 to 65,535 ((2^16) - 1). The Due stores a 4 byte (32-bit) value, ranging from 0 to 4,294,967,295 (2^32 - 1).