头文件:#include <string.h>
strcat() 用来连接字符串,其一般形式型为:
strcat(str1,str2)作用是将数组2中字符串串接到数组1字符串后面,并把str1字符数组最后面的NULL覆盖掉,然后再最后面加上NULL,结果放在字符数组2中
【返回值】返回str1起始地址
#include <stdio.h> int main() { char str1[30]={"People‘s Republic of "}; char str2[]={"China"}; strcat(str1,str2); printf("%s\n",str1); return 0; }
结果为:People‘s Republic of China
时间: 2024-10-16 07:18:14