The C compiler lets you define a 64-bit integer with the type specifier long long. This behavior is controlled by the longlong pragma. There is no item in the C/C++ Language Panel to control this option.
If this option is off, using long long causes a syntax error.
In an enumerated type, you can use an enumerator large enough for a long long. For more information, see "Enumerated Types." However, long long bitfields are not supported.
You control the long long type with pragma longlong.To check whether this option is on, use __option (long-long). By default, this pragma is on.
See also "longlong" and "Checking Options."