c strcpy()函数

strcat(first_string,second_string)函数连接两个字符串,结果返回给first_string。

#include< stdio.h> #include < string.h> 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; }

【c strcpy()函数】输出:
Value of first string is: helloc

    推荐阅读