Skip to content

Commit 7df3b58

Browse files
author
SimonePDA
authored
Merge pull request #347 from NadeenUdantha/patch-1
Update unsignedInt.adoc
2 parents 61f00dc + 9f25ce1 commit 7df3b58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Language/Variables/Data Types/unsignedInt.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ subCategories: [ "Data Types" ]
1717

1818
[float]
1919
=== Description
20-
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).
20+
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).
2121

2222
The Due stores a 4 byte (32-bit) value, ranging from 0 to 4,294,967,295 (2^32 - 1).
2323

0 commit comments

Comments
 (0)