char *GetMemory(void){ char p[] = "hello world";return p; }void Test(void){char *str = p; }void Test(void){char *str = NULL;str = GetMemory(); printf(str);}请问运行 Test 函数会有什么样的结果? 参考答案 查看答案