I was attempting to multiply two very large mpz_t
s together, each of 2^(10*2^22) bits
, using the mpz_mul
function in the GMP library.
There was no segmentation fault, and the multiplication managed to go through. However, when I output the result of the multiplication to a file, all I observed is a string of trailing zeros.
Is there any way I can overcome this limitation?