fork(2) download
  1. #include <cstdio>
  2.  
  3. int main()
  4. {
  5. int n = 64;
  6. printf("%llu\n", 1ull << n);
  7. printf("%llu\n", 1ull << 64);
  8. return 0;
  9. }
Success #stdin #stdout 0s 4184KB
stdin
Standard input is empty
stdout
0
0