解题思路:
#include<stdio.h>
#include<string.h>
int main()
{
char a[10]={'0'},b[10]={'0'};
scanf("%s%s", &a, &b);
//printf("%s %s\n",a,b);
strcp(a,b);
return 0;
}
void strcp(char a[],char b[])
{
int len,i;
char *p = &b[0];
len = strlen(a);
for(i=0;i<3;i++)
{
a[i+len] = *(p+i);
//printf("%c\n",a[i]);
}
printf("%s",a);
}
0.0分
0 人评分
点我有惊喜!你懂得!浏览:1462 |
小九九 (C语言代码)浏览:885 |
弟弟的作业 (C++代码)浏览:1342 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:553 |
矩阵乘法 (C++代码)浏览:1662 |
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:443 |
【出圈】 (C语言代码)浏览:590 |
母牛的故事 (C语言代码)浏览:478 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:633 |
校门外的树 (C语言代码)浏览:733 |