我用指针写了一个字符串复制程序,但是出现分段错误,不知道为什么。
谢谢
这是我的代码:
#include<stdio.h>
void strcp(char *s,char *t){
while(*s++=*t++)
;
}
void main(){
char *d="this is destination";
char *s="this is source";
strcp(d,s);
while(d++){
printf("%s " ,*d);
}
return;
}