Index
 
  Reference for Wiring 1.0 (ALPHA) 0017+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.
Name  

unsigned int

   
Examples  
unsigned int a;          // Declare variable "a" of type int 
a = 23;         // Assign "a" the value 23 
unsigned int b = 256;   // Declare variable "b" and assign it the value 256 
unsigned 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. Unsigned integers can be as large as 65535 and as low as 0. They are stored as 16 bits of information.

정수의 데이터 형입니다. 수는 십진 소숫점을 포함하지 않습니다. 무 부호 integer는 65535 부터 0 까지 표시할 수 있습니다. 16 비트 공간에 저장됩니다.

   
Syntax  
unsigned int var
unsigned int var = value
   
Parameters  
var   variable name referencing the value

value   any integer value

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