I have in C++ a vector of 32 bits integers (variable size, continous memory; like a C-array), representing a number in base 4294967296. I would like to print it in base 10.
These numbers can be extremely big and take over a few megabytes of memory.
What would be the best way to do this in terms of performance? Can I use GMP to do this?