萨博秒杀中将第几集:结果分析2,,,,

来源:百度文库 编辑:中科新闻网 时间:2024/04/28 01:05:25
char *GetMemory(void)
{
char p[] = "hello world";
return p;
}
void Test(void)
{
char *str = NULL;
str = GetMemory();
printf(str);
}
请问运行Test 函数会有什么样的结果?

hello world

h