我试着做strcpy
自己。它应该可以工作,我什至从某人在这里发布的关于 strcpy
. 两者都给我一个“分段错误”。
char* strcpy(char * destination, const char * source)
{
while( (*destination++ = *source++) != '\0' )
;
return destination;
}
这段代码有什么问题?
char* a = "hello";
cout << strcpy(a, "Haha") << endl;