strcat函數

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

   用法:#include  <string.h>web

   功能:鏈接兩個字符串;strcat()會將參數src字符串 拷貝到 參數dest所指的字符串尾。 第一個參數dest要有足夠的空間來容納要拷貝的字符串。spa

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

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

 

答案:xycdBCDorm

相關文章
相關標籤/搜索