c语言连接两个字符串不用strcat
时间: 2023-06-05 09:07:55 浏览: 79
可以使用 sprintf 函数将两个字符串组合成一个。例如:
char str1[] = "hello";
char str2[] = "world";
char result[20];
sprintf(result, "%s%s", str1, str2);
这样,result 就是 "helloworld"。
相关问题
用c语言做一个代码,连接两个字符串(不用strcat函数)。输入形式:输入两行字符串。输出形式:连接两个字符串。
您好!可以通过以下程序实现连接两个字符串:
```
#include<stdio.h>
#include<string.h>
int main(){
char str1[100], str2[100], res[200];
int i, j, len1, len2;
printf("请输入第一个字符串:");
fgets(str1, sizeof(str1), stdin);
printf("请输入第二个字符串:");
fgets(str2, sizeof(str2), stdin);
len1 = strlen(str1);
len2 = strlen(str2);
for (i = 0; i < len1 - 1; i++) {
res[i] = str1[i];
}
for (j = 0; j < len2; j++) {
res[i + j] = str2[j];
}
res[i + j] = '\0';
printf("连接后的字符串为:%s", res);
return 0;
}
```
这个程序使用 fgets() 函数从标准输入获取两个字符串,然后使用循环将它们连接在一起,最后输出连接后的结果。希望这个程序对您有所帮助!
c语言连接两个字符串
在C语言中连接两个字符串可以使用strcat()函数。该函数的原型为:
```c
char *strcat(char *dest, const char *src);
```
其中,dest是目标字符串,src是被连接的字符串,函数返回一个指向目标字符串的指针。使用该函数时,要确保目标字符串dest有足够的空间来容纳被连接的字符串src。
示例代码:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[20] = "hello";
char str2[20] = "world";
strcat(str1, str2);
printf("str1 = %s\n", str1);
return 0;
}
```
输出结果为:`str1 = helloworld`。
阅读全文