strcpy()的实现问题
#include<iostream>#include<assert.h>
using namespace std;
char *strcpy(char *d, char *s);
int main()
{
char *a="hello";
char *b;
strcpy(b,a);
cout<<"a:"<<a<<endl;
cout<<"b:"<<b<<endl;
}
char *strcpy(char *d, char *s)
{
assert((d!=NULL)&&(s!=NULL));
char *t=d;
while((*d++=*s++)!='\0')
return t;
}
程序可以编译通过,但是运行的时候就出现段错误。请高手指教是什么问题!