Bootstrap

c语言连接字符串不用strcat,不要strcat函数连接两个字符串

不用strcat函数连接两个字符串

程序如下:

#include "stdio.h"

#include "conio.h"

#include "math.h"

main()

{char c,str1[100],str2[100],str3[300];

int i,j;

printf("Please input the first string\nConfirm by Enter\n");

gets(str1);

printf("Please input the second string\nConfirm by Enter\n");

gets(str2);

for(i=0;(c=str1[i])!='\0';i++)

{str3[i]=str1[i];

};

j=i;

for(i=0;(c=str2[i])!='\0';i++,j++)

{str3[j]=str2[i];

};

printf("The string which has been connected is:\n%s",str3);

getch();

}

问题:

有时候能正常连接 而有的时候会出现一个小小的表情

123019179.png

-

悦读

道可道,非常道;名可名,非常名。 无名,天地之始,有名,万物之母。 故常无欲,以观其妙,常有欲,以观其徼。 此两者,同出而异名,同谓之玄,玄之又玄,众妙之门。

;