|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
谭浩强的第261页例8.20的第三种解法,奇怪他为什么要多用一个char*p来指向数组b,而不直接声明一个指针b指向字符数组呢,我试着编了一下,结果是不能通过,这是为什么呢???。以下是我改了的代码,请前辈们不吝赐教!多谢多谢!!!#include<stdio.h>
int main()
{
void copy_string(char*from,char*to);
char*a="I am a teacher.";
char*b="You are a student."; //就是这里和书上不一样
printf("string a=%s\nstring b=%s",a,b);
printf("\ncopy string a to string b:\n");
copy_string(a,b);
printf("string a=%s\nstring b=%s\n",a,b);
return 0;
}
void copy_string(char*from,char*to)
{
for(;*from!=0;from++,to++)
{
*to=*from;
}
*to='\0';
}
|
|