Skip to content

Instantly share code, notes, and snippets.

@ThePratikSah
Created July 17, 2017 13:11
Show Gist options
  • Save ThePratikSah/98c6451167ba94c0a11d5047b6c45b77 to your computer and use it in GitHub Desktop.
Save ThePratikSah/98c6451167ba94c0a11d5047b6c45b77 to your computer and use it in GitHub Desktop.
Datatypes | Range | Bytes | Format
signed char | -128 to +127 | 1 | %c
unsigned char | 0to 255 | 1 | %c
short signed int | -32768 to +32767 | 2 | %d
short unsigned int | 0 to 65535 | 2 | %u
signed int | -32768 to +32767 | 2 | %d
unsigned int | 0 to 65535 | 2 | %u
long signed int | -2147483648 to +2147483647 | 4 | %ld
long unsigned int | 0 to 4294967295 | 4 | %lu
float | -3.4eˆ38 to +3.4eˆ38 | 4 | %f
double | -1.7eˆ308 to +1.7eˆ308 | 8 | %lf
long double | -1.7eˆ4932 to +1.7eˆ4932 | 10 | %lf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment