c語言問題將兩個字串連線起來要求不用

時間 2021-08-30 11:19:49

1樓:匿名使用者

void main()

char lj(char m[100],n[100])

就是這樣了,有啥疑問可以問我

2樓:匿名使用者

#include"stdio.h"

void main()

void str_link(char str1[ ],char str2[ ]) //定義str_link函式

dowhile(str2[j]!='\0');

str1[m]='\0';}

3樓:

void stringjoin(char *s1, char *s2)

4樓:欲墜星河望人間

不用strcat連線字串

#include

int main()

;char str2=;

for(i=0;str1[i]!='\0';i++)for(j=0;str2[j]!='\0';j++)str[i+j]='\0';

puts(str);

return 0;}

5樓:倒黴熊

#include "stdio.h"

char* strcat(char s1,char s2)

int main()

c語言程式設計序,編寫程式,通過陣列實現將兩個字串連線起來,不用strcat()函式。

6樓:匿名使用者

#include

void func(char *a,char *b)

int main(void)

7樓:匿名使用者

#include

void catstr( char *s1,char *s2 )while(s2[j++]!='\0');

}int main()

8樓:此時秋風涼

程式沒問題啊,只要保證合併後的陣列大小不超過20就行了

c語言題目 將兩個字串連線起來不用strcat函式

9樓:尤慕

strcat( char * dst , char* src ) 函式相當於 strcpy( dst+strlen(dst) , src)

無論用哪一個,dst的串長都要設定大一點才行。

例子;char dst[20]="hello " , src="world!!";

strcat(dst,src);//dst變成了版hello world!!

strcpy(dst+strlen(dst),src);//即把src串複製到權dst串的尾部即可。

\(^o^)/可以理解吧?

10樓:匿名使用者

#include

main()

編寫一個程式,將兩個字串連線起來,並輸出(不要使用strcat函式)。用c語言求解詳細過程。

11樓:

找到第一個字串最後的'\0',然後把第二個字串從頭開始一個字元一個字元地拷貝到第一個字串後面,並把最後的'\0'也拷過去。應用舉例如下:

//#include "stdafx.h"//if the vc++6.0, with this line.

#include "stdio.h"

#include "stdlib.h"

int main(void)

c語言從鍵盤輸入兩個字串,將字串連線到字串的後面,並輸出連線

include include int main char s1 char s2 char output printf please input the first string scanf s s1 printf please input the second string scanf s s2 ...

c語言中如何判斷兩個字串完全相等

兆憐翠 用字元比較函式,做個for迴圈判斷即可,字串比較函式strcmp 格式strcmp a,b 0 a b strcmp a,b 0 a0 a ba,b均為字串! include bool isequal char str1,char str2 return true int main 在資料結...

編寫C語言函式,比較兩個字串的大小

城凝慶偉博 include define n100 intinput char a,char b 輸入兩個字串 intmy strcmp char a,char b 比較字串每個字元的大小 else if a b else if a 0 b 0 字串b比字串a長 else if a 0 b 0 字串...