Created
July 17, 2017 13:11
-
-
Save ThePratikSah/98c6451167ba94c0a11d5047b6c45b77 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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