printf("请输入两个字符串,以回车连接。\n"); printf("输入字符串1:"); scanf("%s",s1); printf("输入字符串2:"); scanf("%s",s2); while(s1[i]!='\0') i++; while(s2[j]!='\0') s1[i++]=s2[j++]; s1[i]='\0'; printf("\n新字符串为:%s\n\n",s1); }反馈...
编一个程序,将两个字符串连接起来,不要用 strcat 函数。相关知识点: 试题来源: 解析 # include <stdio.h> 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′)...
解:程序如下 #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] ; } main( ) { char a[50] , b[30] ; printf(“input string a:\n”) ; gets...
题目21 编写一个程序,将两个字符串连接起来,不要用strcat函数。main(){char a[100],b[20];int i,j;for(i=0;a[i]!='\0';i++);i--;for(j=0;b[j]!='\0';i++,j++)a[i]=b[j];a[i]='\0';printf("%s\n",a);}22写一个函数,输入一个十六进制[1]数,...
百度试题 题目编写一个程序,将两个字符串连接起来,不要使用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++) {...
参考程序: /* 文件路径名:ex5_3_5\main.c */ #include /* 包含库函数printf()所需要的信息 */ #include /* 包含库函数system()所需要的信息 */ char *StrCat(char s1[], char s2[]) /* 将s2中的字符串连接到s1 中字符串的后面 */ { int i = 0, j = 0; /* 定义变量 */ while (s1...
30.编写一个程序,将两个字符串连接起来,不要使用 strcat函数。Includevoid mainchar str1 20], str2 20]int i=0,j=0
C语言编写一个程序,将两个字符串连接起来,不要用strcat函数。 解题思路:首先要有两个键盘录入,实现录入字符串1和字符串2,然后实现拼接,读者看这道例题的时候,可以先想想要是用strcat函数应该怎么写代码,然…
编写程序,将两个字符串连接起来,不要用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++]...