Artificial Intelligence UIUC CS 440
· 6 min read
2's complement | unsigned | |
---|---|---|
8 bits | char | unsigned char |
16 bits | short int | unsigned short int |
32 bits | int | unsigned int |
32 or 64 bits | long | unsigned long |
64 bits | long long int | unsigned long long int |
-->
-->
-->