i have recently installed mpir and have the following code (c++) visual studio.
char buffer[100]
mpz_t x;
mpz_set_str(x, "7612058254738945", 10);
I would like to print x into the buffer. used to use sprint but there does not seem to be any sprint for mpir
thanks
david