谭浩强书中指针的错误

p236

 

#include
using namespace std;

void copy_string(char *from,char *to){
 for(;*from != '/0';from++,to++)
  *to=*from;
 *to='/0';
}

 

void main(){
 
 char *a="I am a teacher.";
 char *b="You are students.";
 cout< copy_string(a,b);
 cout<}

 

出现运行错误,理由:

a,b是指向字符串常量的指针,他们相当于:

const char *a="I am a teacher.";

const char *b="You are students.";

不能被修改,可以将他们用数组来实现

char a[]="I am a teacher.";
char b[]="You are students.";

这样就没问题了!

你可能感兴趣的:(谭浩强书中指针的错误)