在我的书中有一个示例如何复制字符串(2 个指针)。我复制了整个代码,但是当我在终端中启动程序时,它显示“分段错误(核心转储)” >。<
这段代码有什么问题?:
#include <iostream>
#include <string>
using namespace std;
void cpy(char* p,const char* q){
while(*p++ = *q++) ;
}
int main(){
char* hello;
cpy(hello, "Whazzap");
return 0;
}