gpt4 book ai didi

在 C 中连接字符串

转载 作者:太空狗 更新时间:2023-10-29 15:44:54 25 4
gpt4 key购买 nike

如何在 C 中连接字符串,不像 1 + 1 = 2 但像 1 + 1 = 11

最佳答案

我认为你需要字符串连接:

#include <stdio.h>
#include <string.h>

int main() {
char str1[50] = "Hello ";
char str2[] = "World";

strcat(str1, str2);

printf("str1: %s\n", str1);

return 0;
}

来自:http://irc.essex.ac.uk/www.iota-six.co.uk/c/g6_strcat_strncat.asp

关于在 C 中连接字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/968316/

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