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