gpt4 book ai didi

c++ - 将一个 int append 到 char*

转载 作者:IT老高 更新时间:2023-10-28 21:45:55 27 4
gpt4 key购买 nike

如何在 c++ 中将整数 append 到 char* 中?

最佳答案

首先使用 sprintf() 将 int 转换为 char*:

char integer_string[32];
int integer = 1234;

sprintf(integer_string, "%d", integer);

然后要将其 append 到您的其他 char*,请使用 strcat():

char other_string[64] = "Integer: "; // make sure you allocate enough space to append the other string

strcat(other_string, integer_string); // other_string now contains "Integer: 1234"

关于c++ - 将一个 int append 到 char*,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/347132/

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