Which data type would you use to store a very large integer value that goes beyond the range of long long int?

  • BigInteger
  • BigNumber
  • Int64_t
  • LongDouble
When you need to store very large integer values that exceed the range of long long int, you can use the BigInteger data type. BigInteger is not limited by the size of traditional integer types and allows you to perform arithmetic operations on extremely large integers.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *