Reputation: 482
I came accross this statement:
time_t time = x / 1000LL;
So what does this LL
actually mean?
Upvotes: 4
Views: 3640
Reputation: 5369
Copy-pasted from this question, which seems to be the exact same one with the ULL
suffix :
From the
gcc
manual:ISO C99 supports data types for integers that are at least 64 bits wide, and as an extension GCC supports them in C90 mode and in C++. Simply write
long long int
for a signed integer, orunsigned long long int
for an unsigned integer. To make an integer constant of typelong long int
, add the suffixLL
to the integer. To make an integer constant of typeunsigned long long int
, add the suffixULL
to the integer.
It, indeed, is a suffix for the long long int
type.
Upvotes: 7