将两个字符串连接起来,不能使用strcat函数,并编写主程序调用这个函数..
#include<stdio.h>charstick(chara[100],charb[100]){inti=0,j=0;while(a[i]!='\0')i++;//直...
#include <stdio.h> char stick(char a[100],char b[100]) { int i=0,j=0; while(a[i]!='\0') i++; //直到遇到s1的结束符为止 while(b[j]!='\0') a[i++]=b[j++];//将s2复制到s1后面 a[i]='\0';//添加字符串结束标志 return a[100]; } main() { char x[100]; char y[100]; printf("Input string:\n"); scanf("%s",x); printf("Input another sting:\n"); scanf("%s",y); x[100]=stick(char x[100],y[100]); printf("result:%s",x[100]); } 这个应该怎么修改??
展开
展开全部
#include <stdio.h> void stick(char a[],char b[]) { int i=0,j=0; while(a[i]!='\0') i++; //直到遇到s1的结束符为止 while(b[j]!='\0') a[i++]=b[j++];//将s2复制到s1后面 a[i]='\0';//添加字符串结束标志 //return a[100]; } void main() { char x[100]; char y[100]; printf("Input string:\n"); scanf("%s",x); printf("Input another sting:\n"); scanf("%s",y); stick(x,y); printf("result:%s\n",x); }
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询