fork(1) download
  1. #include <iostream>
  2. #include <cstdint>
  3. #include <limits>
  4.  
  5. int main() {
  6. std::cout << "Maximum value of uint64_t using UINT64_MAX: " << UINT64_MAX << std::endl;
  7. std::cout << "Maximum value of uint64_t using numeric_limits: " << std::numeric_limits<uint64_t>::max() << std::endl;
  8. return 0;
  9. }
Success #stdin #stdout 0s 5276KB
stdin
Standard input is empty
stdout
Maximum value of uint64_t using UINT64_MAX: 18446744073709551615
Maximum value of uint64_t using numeric_limits: 18446744073709551615