从键盘输入一个字符串a,将字符串a复制到字符串b中,再输出字符串b,即编程实现字符串处理函数strcpy()的功能,但要求不能使用字符串处理函数strcpy()。
**输入提示信息:"Input a string:"
**输入格式要求:用gets()输入字符串
**输出格式要求:"The copy is:"
使用字符指针编程的
#include
#include
void mystrcpy(char *a,char *b)
{
while(*b != '')
{
*a = *b;
a++;
b++;
}
*a = '';
}
int main(void)
{
char a[80],b[80];
printf("Input a string:");
gets(a);
mystrcpy(b,a);
printf("The copy is:");
puts(b);
return 0;
}
用字符数组编程的
#include
#include
void mystrcpy(char a[],char b[])
{
int i = 0;
while(b[i] != '')
{
a[i] = b[i];
i++;
}
a[i] = '';
}
int main(void)
{
char a[80],b[80];
printf("Input a string:");
gets(a);
mystrcpy(b,a);
printf("The copy is:");
puts(b);
return 0;
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)