gpt4 book ai didi

将 uintmax_t 转换为字符串 c

转载 作者:太空宇宙 更新时间:2023-11-04 06:08:54 27 4
gpt4 key购买 nike

C语言中如何将uintmax_t转成字符串?

最佳答案

您将使用 sprintf 转换为字符串。对于 uintmax_t 等类型,inttypes.h header 包含这些类型的 printf 转换说明符。

#include <stdint.h>
#include <inttypes.h>
#include <stdio.h>

int main(int argc,char *argv[])
{
char str[64];
uintmax_t i = 123456;
sprintf(str,"Value is %" PRIuMAX "\n",i);
puts(str);
return 0;
}

关于将 uintmax_t 转换为字符串 c,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4711840/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com