Framework (A-Z)

Reference for Wiring version 1.0 Build 0100+ If you have a previous version, use the reference included with your software. If see any errors or have any comments, let us know.

Name

word

Examples
// ...

word a; 

a = 23; // Assign "a" the value 23
// Declare variable "b" and assign it the value 256
word b = 256; 
// Declare variable "c" and assign it the sum of "a" and "b"
word d = a + b; }

// ...
Description Datatype for unsigned integers, numbers without a decimal point. Unsigned integers can be as large as 65535 and as low as 0. They are stored as 16 bits of information on the AVR core.
Syntax
word var
word var = value
Parameters
var variable name referencing the value
value any integer value
Usage Application
Related byte
int
long
unsigned long
float
double
Updated on July 07, 2011 11:09:33pm PDT

Creative Commons License