Supposing that I know how many digits my number might be (and I'd like to allocate the right amount of space the first time, how can I calculate the number of bytes I need to allocate? I suppose I could always set the value to be 1*10^(num digits)
and then 0
after but that feels wrong, and like I'm defeating the purpose.
Edit for clarity: I want to know how many bytes I need to store an integer with n
decimal digits, and whether or not MPIRs implementation might affect that. @JonathonLeffler provided the correct answer in the comment to his answer.
Since there is an MPIR tag, this is probably about MPIR, a fork of GMP. And in the current documentation (PDF only — no online HTML), under the heading 'Initializing integers', you can find:
If this was for GMP, you can read the online manual on Initializing integers to find:
The two are essentially the same.