有关内存的思考题 1. void getmemory(char *p) { p=(char*)mallol(100); } void test(void)
有关内存的思考题
1. void getmemory(char *p)
{ p=(char*)mallol(100);
}
void test(void)
{
char * str =null;
getmemory(str);
strcpy(str,”hello,world”);
printf(str);
}
请问运行 Test 函数会有什么样的结果
请帮忙给出正确答案和分析,谢谢!