Using GMP on c, I have a big integer "mpz_t n" in decimal form, how can I cut it into 2 parts? In fact, these 2 parts should have the same length in binary.
For example, maybe I can convert the n to a binary of 112bits, then I want to cut it into 2 56bits parts.
Thanks