Ch. 2.6: Integer Data Types Flashcards
What is the short int variable?
Numbers from -99,999 to 99,999.
What is the unsigned short int variable?
Numbers from 0 to 99,999.
What is the int variable?
Numbers from -9,999,999,999 to 9,999,999,999.
What is the unsigned int variable?
Numbers from 0 to 9,999,999,999.
What is a long int?
Numbers from -9,999,999,999 to 9,999,999,999.
What is an unsigned long integer?
Numbers from 0 to 9,999,999,999.
What is a long long int?
Numbers from -9,999,999,999,999,999,999 to 9,999,999,999,999,999,999.
What is a numeric or integer literal?
A number not written with a decimal point.
What is a long integer literal?
The integer is treated as a long. Denoted by an āLā after the number.
What is a hexadecimal number?
A number in base 16.