📅  最后修改于: 2020-10-22 05:31:51             🧑  作者: Mango
strcat(first_string,second_string)函数连接两个字符串,结果返回给first_string。
#include
#include
int main(){
char ch[10]={'h', 'e', 'l', 'l', 'o', '\0'};
char ch2[10]={'c', '\0'};
strcat(ch,ch2);
printf("Value of first string is: %s",ch);
return 0;
}
输出:
Value of first string is: helloc