gpt4 book ai didi

c - 在函数输入中附加一个字符?

转载 作者:太空宇宙 更新时间:2023-11-04 01:10:46 25 4
gpt4 key购买 nike

我需要一个函数的发送和整数,然后将其附加到一个常量字符的末尾。

int main (void)
{
append(1);
}

int append(int input)
{
const char P = 'P';

//This where I want to append 1 to P to create "P1"'
}

最佳答案

无论做什么,都需要将数字转换为字符串,否则无法创建包含两个数字的字符串。

实际上,您可以在一个函数调用中结合连接和 int 到字符串的转换:sprintf:

char output[16];
sprintf(output, "P%d", input);

关于c - 在函数输入中附加一个字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12863495/

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