| |||
| Home > Compiler Command-line Options > Command-line options > --long_long | |||
This option permits use of the long long data
type in strict mode.
To successfully compile the following code in strict mode,
you must use --strict --long_long.
long long f(long long x, long long y)
{
return x*y;
}