Index
 
  The Wiring 1.0 _ALPHA_ Reference is a work in progress.
If you see any errors or have any comments, please write to: hbarragan [at] uniandes.edu.co
Name  

int

   
Examples  
int a;          // Declare variable "a" of type int 
a = 23;         // Assign "a" the value 23 
int b = -256;   // Declare variable "b" and assign it the value -256 
int c = a + b;  // Declare variable "c" and assign it the sum of "a" and "b" 

Description   Datatype for integers, numbers without a decimal point. Integers can be as large as 32.768 and as low as -32,768. They are stored as 16 bits of information.
   
Syntax  
int var
int var = value
   
Parameters  
var   variable name referencing the value

value   any integer value

   
Returns  
   
Usage   Application
   
Related   byte
unsigned int
long
unsigned long
float
double