如何连接字符串,不能用strcat()函数?
#include "stdio.h"#include "string.h"
int main(int argc, char* argv[])
{
char str1[10]="Hello!";
char str2[10]="world";
char str3[100];
printf("%s",strcpy(str3,str1));//这样连接对吗?代码该如何修改?
printf("%s",strcpy(str3,str2));
return 0;
}