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