strcat函数

 原型:char  *strcat  ( char  *dest, const  char  *src)

用法:#include  <string.h>

功能:连接两个字符串;strcat()会将参数src字符串 拷贝到 参数dest所指的字符串尾。 第一个参数dest要有足够的空间来容纳要拷贝的字符串。

说明:strcat()返回dest的字符串起始地址。

#include<iostream>
using namespace std; int main()
{
char p1[] = "abcd", *p2, str[] = "xyz"; p2 = "ABCD";
strcpy(str + , strcat(p1 + , p2 + ));
printf(" %s", str);
}

答案:xycdBCD

 
上一篇:NYOJ-745蚂蚁的难题(二)


下一篇:[LeetCode] Find the Derangement of An Array 找数组的错排