标签: c++ gmp
如何使用#include <gmp.h>在GMP中声明128位的大数字?这个数字是一个整数。
#include <gmp.h>
答案 0 :(得分:3)
使用mpz_set_str初始化为ascii值。
mpz_set_str
mpz_t N; mpz_init(N); mpz_set_str(N, "55555555555555555555555555555");