c 實現字串strcat 連線

2021-06-22 23:07:07 字數 492 閱讀 3558

//字串連線函式

#include#includeusing namespace std;

char *string_cat(char *source,int s1,const char *dest)

return source;

}int main()

sum=strlen(a);//計算a陣列的字元數

string_cat(a,sum,b);

cout《此程式還可以只需要兩個陣列引數,不需要傳遞a陣列的字元數,b也可以是陣列:

//字串連線函式

//少使用了乙個引數

#include#includeusing namespace std;

char *string_cat(char *source,const char *dest)

{ int i,j;

int n1=strlen(source);

i=n1;

//cout<

字串的連線strcat 自實現

include stdafx.h include int tmain int argc,tchar argv p q printf s n firstname 方法二 char p firstname while p 0 p p為得到jim的 0位置 char q lastname for p q ...

C語言strcat 函式 連線字串

標頭檔案 include strcat 函式用來連線字串,其原型為 char strcat char dest,const char src 引數 dest 為目的字串指標,src 為源字串指標。strcat 會將引數 src 字串複製到引數 dest 所指的字串尾部 dest 最後的結束字元 nu...

C語言strcat 函式 連線字串

標頭檔案 include strcat 函式用來連線字串,其原型為 char strcat char dest,const char src 引數 dest 為目的字串指標,src 為源字串指標。strcat 會將引數 src 字串複製到引數 dest 所指的字串尾部 dest 最後的結束字元 nu...