在C语言中,字符串拼接有多种方法,其中一些常见的方法包括:
#include <string.h>
char str1[20] = "Hello";
char str2[20] = "World";
strcat(str1, str2);
printf("%s\n", str1); // 输出结果为"HelloWorld"
char str[20];
int num = 123;
sprintf(str, "The number is: %d", num);
printf("%s\n", str); // 输出结果为"The number is: 123"
#include <string.h>
char str1[20] = "Hello";
char str2[20] = "World";
strncat(str1, str2, 3);
printf("%s\n", str1); // 输出结果为"HelloWor"
#include <string.h>
char str1[20] = "Hello";
char str2[20] = "World";
strcpy(str1, "Hello");
strcat(str1, str2);
printf("%s\n", str1); // 输出结果为"HelloWorld"
这些都是常见的字符串拼接方法,可以根据具体的需求选择合适的方法进行字符串拼接。