First page Back Continue Last page Graphics
More Examples
cout << sizeof(long long) << endl;
8
cout << LONG_LONG_MAX << endl;
9223372036854775807 ( 2 - 1 )
long long c(LONG_LONG_MAX);
cout << c+1 << endl;
-9223372036854775808
unsigned long long d(ULONG_LONG_MAX);
cout << d+1 << endl;
0