fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.  
  7. enum A{a=9223372036854775808,b=~9223372036854775808 + 1};
  8. cout << a << endl;
  9. cout << sizeof(a) << endl;
  10. cout << b << endl;
  11.  
  12.  
  13. }
  14.  
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
9223372036854775808
8
9223372036854775808