gmp 值转换为 char*

发布于 2024-10-22 08:09:49 字数 162 浏览 1 评论 0原文

我不明白如何将 mpz_t 类型变量放入 char* 中。我尝试了很多函数,但我的 char* 保持为空。

我可以输出我的 B 变量:

mpz_t B;
gmp_printf("B: %Zx\n", B);

但是如何将该 B 变量转换为 char* ?

I don't understand how I can get mpz_t type variable into char*. I've tried many functions, but my char* stays empty.

I can output my B variable:

mpz_t B;
gmp_printf("B: %Zx\n", B);

But how to convert that B variable into char*?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

女中豪杰 2024-10-29 08:09:49

看起来 mybuffer = mpz_get_str(NULL, /*base*/10, B); 可以满足您的要求。 (它分配返回的缓冲区。如果您愿意,您可以将其写入现有缓冲区 - 请参阅手册以了解如何计算所需的大小。)

Looks like mybuffer = mpz_get_str(NULL, /*base*/10, B); does what you want. (It allocates the returned buffer. You can have it write to an existing buffer if you prefer - see the manual for how to compute the size required.)

我是有多爱你 2024-10-29 08:09:49
gmp_sprintf(array, "%Zx", B);
gmp_sprintf(array, "%Zx", B);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文