Primitive Data Types
Data Type | Size | Range |
---|---|---|
int |
4 bytes | -231 to 231-1 |
long |
8 bytes | -263 to 263-1 |
float |
4 bytes | 6 to 7 decimal digits |
double |
8 bytes | 15 decimal digits |
decimal |
16 bytes | 28 to 29 decimal digits |
char |
2 bytes | 0 to 65535 |
bool |
1 bit | true / false |
string |
2 bytes per char | N/A |
Comments
Related