百度试题 题目将两个字符串连接起来,不用strcat函数。相关知识点: 试题来源: 解析反馈 收藏
编写程序,将两个字符串连接起来,不用strcat函数。相关知识点: 试题来源: 解析 解: #include #define N 100 int main() { int i,j; char s1[N],s2[N]; printf("please input string 1:\n"); gets(s1); printf("please input string 2:\n"); gets(s2); for(i=0;s1[i]!='\0';i++) {...
编一个程序,将两个字符串连接起来,不要用strcat函数。相关知识点: 试题来源: 解析 #include void main() { char s1[80],s2[40]; int i=0,j=0; printf("请输入两个字符串,以回车连接。\n"); printf("输入字符串1:"); scanf("%s",s1); printf("输入字符串2:"); scanf("%s",s2); while(...
百度试题 题目编写一个程序,将两个字符串连接起来,不要使用strcat函数。相关知识点: 试题来源: 解析反馈 收藏
题目 设计一算法,将两个字符串连接起来,要求不能利用strcat()函数。 相关知识点: 试题来源: 解析答: Typedef struct {char *ch; /*串数组*/ int length; /*串长*/ }HString; int StrConcat(HString *S, HString T) { char *temp;temp=(char *)malloc(S->length);...
编一个程序,将两个字符串连接起来,不要用 strcat 函数。相关知识点: 试题来源: 解析 # include main() { char s1[80],s2[40]; int i=0,j=0; printf(″\n input string1:″); scanf(″%s″,s1); printf(″\n input string2:″); scanf(″%s″,s2); while(s1[i]!=′\0′) i++; ...
编写程序,将两个字符串连接起来,不要用strcat函数。(字符数组) 相关知识点: 试题来源: 解析 /* 结果为: No pain,no gain */ #include void main() { char s1[80]="No pain,",s2[80]="no gain"; int i=0,j=0; while(s1[i]!='\0') i++; while(s2[j]!='\0') s1[i++]=s2[j++]...
编一程序,将两个字符串连接起来,不要用strcat 函数。相关知识点: 试题来源: 解析 解:程序如下 #include “” #include “” void lianjie( char a[50] , char b[30]) { int n1 , n2 , i ; n1= strlen(a) ; n2 =strlen(b); for(i= n1 ; i<=n1+n2 ; i++) a[i]=b[i-n1] ; } ...
30.编写一个程序,将两个字符串连接起来,不要使用 strcat函数。Includevoid mainchar str1 20], str2 20]int i=0,j=0
编写一个程序,将两个字符串连接起来,不能用strcat函数。两个字符串分别从键盘输入,保存在s1[80],s2[40]两个数组中。s2连接到s1后面,结果放到s1中。相关知识点: 试题来源: 解析 #include void main(void) { char s1[80],s2[40]; int i,j; printf("Input string 1:"); gets(s1); printf("Input ...