9.2.1 Double-Word Integers
The compiler supports data types for integers that are twice as long as
long int
. Simply write long long int
for a signed
integer, or unsigned long long int
for an unsigned integer. To make an
integer constant of type long long int
, add the suffix LL
to the integer. To make an integer constant of type unsigned long long
int
, add the suffix ULL
to the integer.
You can use these types in arithmetic like any other integer types.