Mega Code Archive

 
Categories / C Tutorial / Data Type
 

Signed and Unsigned Variables

Signed        Range             Unsigned           Range char          -128 to 127       unsigned char      0 to 255 int           -32768 to 32,767  unsigned int       0 to 65,535 long          -2,147,483,648    unsigned long      0 to 4,294,967,295 to 2,147,483,647